Home
last modified time | relevance | path

Searched refs:ReadWordUsingByte (Results 1 – 5 of 5) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/
DReadExtensionsTest.cs115 Assert.AreEqual(0x3412, bytePeripheral.ReadWordUsingByte(0)); in ShouldReadWordUsingByte()
116 Assert.AreEqual(0x7856, bytePeripheral.ReadWordUsingByte(2)); in ShouldReadWordUsingByte()
129 Assert.AreEqual(0x5634, bytePeripheral.ReadWordUsingByte(1)); in ShouldReadWordUsingByteNotAligned()
130 Assert.AreEqual(0x9078, bytePeripheral.ReadWordUsingByte(3)); in ShouldReadWordUsingByteNotAligned()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MTD/
DAMDCFIFlash.cs254 return this.ReadWordUsingByte(offset); in ReadWord()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DS32K3XX_SystemIntegrationUnitLite2.cs62 return this.ReadWordUsingByte(offset); in ReadWord()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/Extensions/
DReadWriteExtensions.cs20 public static ushort ReadWordUsingByte(this IBytePeripheral peripheral, long address) in ReadWordUsingByte() method in Antmicro.Renode.Core.Extensions.ReadWriteExtensions
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DSystemBus.cs1526 …? (BusAccess.WordReadMethod)byteWrapper.ReadWordUsingByteBigEndian : byteWrapper.ReadWordUsingByte; in FillAccessMethodsWithDefaultMethods()
1541 …Access.WordReadMethod)bytePeripheral.ReadWordUsingByteBigEndian : bytePeripheral.ReadWordUsingByte; in FillAccessMethodsWithDefaultMethods()