Home
last modified time | relevance | path

Searched refs:WriteWord (Results 1 – 25 of 64) sorted by relevance

123

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/
DWriteExtensionsTest.cs111 wordPeriMock.Verify(x => x.WriteWord(0, 0x0012)); in ShouldWriteByteUsingWord()
114 wordPeriMock.Verify(x => x.WriteWord(0, 0x3412)); in ShouldWriteByteUsingWord()
116 wordPeriMock.Verify(x => x.WriteWord(2, 0x0056)); in ShouldWriteByteUsingWord()
119 wordPeriMock.Verify(x => x.WriteWord(2, 0x7856)); in ShouldWriteByteUsingWord()
127 wordPeriMock.Verify(x => x.WriteWord(0, 0x1200)); in ShouldWriteByteUsingWordBigEndian()
130 wordPeriMock.Verify(x => x.WriteWord(0, 0x1234)); in ShouldWriteByteUsingWordBigEndian()
132 wordPeriMock.Verify(x => x.WriteWord(2, 0x5600)); in ShouldWriteByteUsingWordBigEndian()
135 wordPeriMock.Verify(x => x.WriteWord(2, 0x5678)); in ShouldWriteByteUsingWordBigEndian()
143 wordPeriMock.Verify(x => x.WriteWord(0, 0x3412)); in ShouldWriteDoubleWordUsingWord()
144 wordPeriMock.Verify(x => x.WriteWord(2, 0x7856)); in ShouldWriteDoubleWordUsingWord()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DPeripheralAccessMethods.cs28 public BusAccess.WordWriteMethod WriteWord; field in Antmicro.Renode.Peripherals.Bus.PeripheralAccessMethods
63 SetReadOrWriteMethod(i, obj, operation, ref ReadWord, ref WriteWord); in SetMethod()
114 … Tuple.Create(ReadWord, WriteWord, (BusAccess.WordReadMethod)Peripheral.ReadWordNotTranslated), in BuildMissingAccesses()
163 WriteWord = ReadWriteExtensions.BuildWordWriteUsing(read, write); in BuildMissingAccesses()
168 WriteWord = ReadWriteExtensions.BuildWordWriteBigEndianUsing(read, write); in BuildMissingAccesses()
216 WriteWord = Peripheral.WriteWordNotTranslated; in DisableTranslatedAccesses()
252 … var wordWriteWrapperArgs = new object[] {Peripheral, new Action<long, ushort>(WriteWord)}; in WrapMethods()
272 WriteWord = new BusAccess.WordWriteMethod(wordWriteWrapperObj.Write); in WrapMethods()
286WriteWord = (BusAccess.WordWriteMethod)(((WriteHookWrapper<ushort>)WriteWord.Target).OriginalMetho… in UnwrapMethods()
DIWordPeripheral.cs14 void WriteWord(long offset, ushort value); in WriteWord() method
DRedirector.cs51 public void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.Bus.Redirector
53 systemBus.WriteWord(checked((ulong)offset), value); in WriteWord()
DSystemBusGenerated.cs193 …public void WriteWord(ulong address, ushort value, IPeripheral context = null, ulong? cpuState = n… in WriteWord() method in Antmicro.Renode.Peripherals.Bus.SystemBus
227 accessMethods.WriteWord(checked((long)(address - startAddress)), value); in WriteWord()
248 WriteWord(address, value, context, state); in WriteWordWithState()
606 if(pam.WriteWord.Target is WriteHookWrapper<ushort>) in SetHookBeforePeripheralWrite()
608 …pam.WriteWord = new BusAccess.WordWriteMethod(((WriteHookWrapper<ushort>)pam.WriteWord.Target).Ori… in SetHookBeforePeripheralWrite()
612 …pam.WriteWord = new BusAccess.WordWriteMethod(new WriteHookWrapper<ushort>(peripheral, new Action<… in SetHookBeforePeripheralWrite()
DBusParametrizedRegistration.cs51 methods.WriteWord = new BusAccess.WordWriteMethod(writeWord); in FillAccessMethods()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Memory/
DArrayMemoryWithReadonlys.cs30 WriteWord(offset, value); in SetReadOnlyWord()
48 public override void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.Memory.ArrayMemoryWithReadonlys
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DBitAccess.cs53 public void WriteWord(long offset, ushort mask) in WriteWord() method in Antmicro.Renode.Peripherals.Miscellaneous.BitAccess
55 …sysbus.WriteWord(address + (ulong)offset, (ushort)operation(sysbus.ReadWord(address + (ulong)offse… in WriteWord()
DBitBanding.cs63 public void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.Miscellaneous.BitBanding
77 sysbus.WriteWord(realAddress, readValue); in WriteWord()
DMSP430F2XXX_MPY.cs27 WriteWord(offset, extendedValue); in WriteByte()
31 WriteWord(offset, value); in WriteByte()
DAmbiqApollo4_BootromLogger.cs60 WriteWord = 0x78, enumerator
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Extensions/
DReadWriteExtensions.cs378 … peripheral.WriteWord(writeAddress, (ushort)(oldValue | ((ushort)value << 8 * offset))); in WriteByteUsingWord()
426 … peripheral.WriteWord(writeAddress, (ushort)(oldValue | ((ushort)value << 8 * offset))); in WriteByteUsingWordBigEndian()
470 peripheral.WriteWord(address + 0, (ushort)(value >> 0)); in WriteDoubleWordUsingWord()
471 peripheral.WriteWord(address + 2, (ushort)(value >> 16)); in WriteDoubleWordUsingWord()
514 peripheral.WriteWord(address + 0, Misc.SwapBytesUShort((ushort)(value >> 16))); in WriteDoubleWordUsingWordBigEndian()
515 peripheral.WriteWord(address + 2, Misc.SwapBytesUShort((ushort)(value >> 0))); in WriteDoubleWordUsingWordBigEndian()
562 peripheral.WriteWord(address + 0, (ushort)(value >> 0)); in WriteQuadWordUsingWord()
563 peripheral.WriteWord(address + 2, (ushort)(value >> 16)); in WriteQuadWordUsingWord()
564 peripheral.WriteWord(address + 4, (ushort)(value >> 32)); in WriteQuadWordUsingWord()
565 peripheral.WriteWord(address + 6, (ushort)(value >> 48)); in WriteQuadWordUsingWord()
[all …]
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/
DVybridDma.cs41 public void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.DMA.VybridDma
53 channels[channel].WriteWord(operation, value); in WriteWord()
213 public void WriteWord(long offset, ushort value) { in WriteWord() method in Antmicro.Renode.Peripherals.DMA.VybridDma.Channel
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/Wrappers/
DWordPeripheralWrapper.cs23 public void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.Bus.Wrappers.WordPeripheralWrapper
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SD/
DSDHCI.cs54 public void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.SD.SDHCI
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Mocks/
DMockWordPeripheralWithoutTranslations.cs44 public virtual void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.Mocks.MockWordPeripheralWithoutTranslations
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/
DEfmSystemDevice.cs67 public void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.EfmSystemDevice
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/UART/
DMPC5567_UART.cs92 public void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.UART.MPC5567_UART
DMSP430_eUSCI.cs39 public void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.UART.MSP430_eUSCI
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Storage/VirtIO/
DVirtqueue.cs139 … parent.SystemBus.WriteWord(UsedAddress + (ulong)UsedAndAvailable.Flags, 0, context: context); in WriteVirtqueueUsed()
142 …parent.SystemBus.WriteWord(UsedAddress + (ulong)UsedAndAvailable.Index, (ushort)UsedIndexForDriver… in WriteVirtqueueUsed()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/
DSMC91X.cs366 public void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.Network.SMC91X
400 WriteWord(offset, (ushort)(value & 0xffff)); in WriteDoubleWord()
402 WriteWord(offset + 2, (ushort)(value >> 16)); in WriteDoubleWord()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DNPCX_SPIP.cs37 public void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.SPI.NPCX_SPIP
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/
DWriteDataToMemoryCommand.cs67 … manager.Machine.SystemBus.WriteWord(access.Address, (ushort)val, context: manager.Cpu); in WriteData()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/GPIOPort/
DRenesas_GPIO.cs40 public void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.GPIOPort.Renesas_GPIO
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Memory/
DArrayMemory.cs98 public virtual void WriteWord(long offset, ushort value) in WriteWord() method in Antmicro.Renode.Peripherals.Memory.ArrayMemory

123