Home
last modified time | relevance | path

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

123

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Memory/
DGenericI2cEeprom.cs16 namespace Antmicro.Renode.Peripherals.Memory
30 Memory = memory; in GenericI2cEeprom()
82 Memory.WriteBytes(currentAddress, data, index, bytesToWrite); in Write()
91 Memory.WriteBytes(pageStart, data, index, count); in Write()
114 if(count >= Memory.Size) in Read()
117 data = ReadRollover(0, (int)Memory.Size, currentAddress, count); in Read()
118 currentAddress = (currentAddress + count) % (int)Memory.Size; in Read()
123 var bytesToRead = (int)Math.Min(count, Memory.Size - currentAddress); in Read()
124 data = Memory.ReadBytes(currentAddress, bytesToRead); in Read()
131 data = data.Concat(Memory.ReadBytes(0, count)); in Read()
[all …]
DArrayMemoryWithReadonlys.cs11 namespace Antmicro.Renode.Peripherals.Memory
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/PCI/BAR/
DIOBaseAddressRegister.cs36 Memory = 0, enumerator
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DMicron_MT25Q.cs8 using Antmicro.Renode.Peripherals.Memory;
DCypress_S25H.cs9 using Antmicro.Renode.Peripherals.Memory;
DMacronix_MX25R.cs9 using Antmicro.Renode.Peripherals.Memory;
DNANDFlash.cs12 using Antmicro.Renode.Peripherals.Memory;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/SiLabs/
DDeviceInformation.cs8 using Antmicro.Renode.Peripherals.Memory;
DEFM32xGDeviceInformation.cs10 using Antmicro.Renode.Peripherals.Memory;
DEZR32DeviceInformation.cs10 using Antmicro.Renode.Peripherals.Memory;
DEFM32xG1xBDeviceInformation.cs10 using Antmicro.Renode.Peripherals.Memory;
DEFR32DeviceInformation.cs10 using Antmicro.Renode.Peripherals.Memory;
DEFR32xG12DeviceInformation.cs10 using Antmicro.Renode.Peripherals.Memory;
DEFR32xG2_LockbitsData.cs15 using Antmicro.Renode.Peripherals.Memory;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/
DMemoryTests.cs13 using Antmicro.Renode.Peripherals.Memory;
DPeripheralsGroupTests.cs13 using Antmicro.Renode.Peripherals.Memory;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MTD/
DSTM32_FlashController.cs16 using Antmicro.Renode.Peripherals.Memory;
DCC2538FlashController.cs14 using Antmicro.Renode.Peripherals.Memory;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_ScrambledMemory.cs11 using Antmicro.Renode.Peripherals.Memory;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Video/
DLiteX_Framebuffer.cs15 using Antmicro.Renode.Peripherals.Memory;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Memory/
DArrayMemory.cs18 namespace Antmicro.Renode.Peripherals.Memory
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Test/PeripheralsTests/
DOpenTitan_KeyManagerTest.cs10 using Antmicro.Renode.Peripherals.Memory;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/MonitorTests/CommandTests/
DPythonCommands.cs21 using Antmicro.Renode.Peripherals.Memory;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MemoryControllers/
DGaisler_FaultTolerantMemoryController.cs16 using Antmicro.Renode.Peripherals.Memory;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/DMA/
DDmaEngine.cs12 using Antmicro.Renode.Peripherals.Memory;

123