Home
last modified time | relevance | path

Searched defs:cpuState (Results 1 – 5 of 5) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DSystemBusGenerated.cs23 public byte ReadByte(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadByte()
79 …ublic void WriteByte(ulong address, byte value, IPeripheral context = null, ulong? cpuState = null) in WriteByte()
137 public ushort ReadWord(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadWord()
193 …lic void WriteWord(ulong address, ushort value, IPeripheral context = null, ulong? cpuState = null) in WriteWord()
251 … public uint ReadDoubleWord(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadDoubleWord()
307 …void WriteDoubleWord(ulong address, uint value, IPeripheral context = null, ulong? cpuState = null) in WriteDoubleWord()
365 public ulong ReadQuadWord(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadQuadWord()
421 … void WriteQuadWord(ulong address, ulong value, IPeripheral context = null, ulong? cpuState = null) in WriteQuadWord()
659 …context, out PeripheralAccessMethods accessMethods, out ulong startAddress, ulong? cpuState = null) in TryFindPeripheralAccessMethods()
DIBusController.cs27 byte ReadByte(ulong address, IPeripheral context = null, ulong? cpuState = null); in ReadByte()
29 … void WriteByte(ulong address, byte value, IPeripheral context = null, ulong? cpuState = null); in WriteByte()
32 ushort ReadWord(ulong address, IPeripheral context = null, ulong? cpuState = null); in ReadWord()
34 … void WriteWord(ulong address, ushort value, IPeripheral context = null, ulong? cpuState = null); in WriteWord()
37 uint ReadDoubleWord(ulong address, IPeripheral context = null, ulong? cpuState = null); in ReadDoubleWord()
39 …void WriteDoubleWord(ulong address, uint value, IPeripheral context = null, ulong? cpuState = null… in WriteDoubleWord()
42 ulong ReadQuadWord(ulong address, IPeripheral context = null, ulong? cpuState = null); in ReadQuadWord()
44 …void WriteQuadWord(ulong address, ulong value, IPeripheral context = null, ulong? cpuState = null); in WriteQuadWord()
DBusControllerProxy.cs33 … public virtual byte ReadByte(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadByte()
51 …rtual void WriteByte(ulong address, byte value, IPeripheral context = null, ulong? cpuState = null) in WriteByte()
67 … public virtual ushort ReadWord(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadWord()
85 …ual void WriteWord(ulong address, ushort value, IPeripheral context = null, ulong? cpuState = null) in WriteWord()
101 …blic virtual uint ReadDoubleWord(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadDoubleWord()
119 …void WriteDoubleWord(ulong address, uint value, IPeripheral context = null, ulong? cpuState = null) in WriteDoubleWord()
315 …ublic virtual ulong ReadQuadWord(ulong address, IPeripheral context = null, ulong? cpuState = null) in ReadQuadWord()
325 … void WriteQuadWord(ulong address, ulong value, IPeripheral context = null, ulong? cpuState = null) in WriteQuadWord()
DSystemBus.cs390 … public bool TryGetCurrentContextState<T>(out IPeripheralWithTransactionState cpu, out T cpuState) in TryGetCurrentContextState()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/
DTranslationCPU.cs604 protected ulong ReadByteFromBus(ulong offset, ulong cpuState) in ReadByteFromBus()
621 protected ulong ReadWordFromBus(ulong offset, ulong cpuState) in ReadWordFromBus()
638 protected ulong ReadDoubleWordFromBus(ulong offset, ulong cpuState) in ReadDoubleWordFromBus()
655 protected ulong ReadQuadWordFromBus(ulong offset, ulong cpuState) in ReadQuadWordFromBus()
672 protected void WriteByteToBus(ulong offset, ulong value, ulong cpuState) in WriteByteToBus()
690 protected void WriteWordToBus(ulong offset, ulong value, ulong cpuState) in WriteWordToBus()
708 protected void WriteDoubleWordToBus(ulong offset, ulong value, ulong cpuState) in WriteDoubleWordToBus()
726 protected void WriteQuadWordToBus(ulong offset, ulong value, ulong cpuState) in WriteQuadWordToBus()
1385 private byte[] cpuState; field in Antmicro.Renode.Peripherals.CPU.TranslationCPU