Home
last modified time | relevance | path

Searched refs:ArrayMemory (Results 1 – 10 of 10) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Memory/
DArrayMemory.cs20 public class ArrayMemory : IMemory, ICanLoadFiles, IEndiannessAware class
22 public ArrayMemory(byte[] source) in ArrayMemory() method in Antmicro.Renode.Peripherals.Memory.ArrayMemory
27 public ArrayMemory(ulong size, byte initialValue = 0x00) in ArrayMemory() method in Antmicro.Renode.Peripherals.Memory.ArrayMemory
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Memory/
DArrayMemoryWithReadonlys.cs13 public class ArrayMemoryWithReadonlys : ArrayMemory
DGenericI2cEeprom.cs37 : this(new ArrayMemory(size, Byte.MaxValue), addressBitSize, writable, pageSize) in GenericI2cEeprom()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/
DOpenTitan_SpiDevice.cs24 underlyingSramMemory = new ArrayMemory(BufferWindowSizeInDoublewords * 4); in OpenTitan_SpiDevice()
646 private ArrayMemory underlyingSramMemory;
711 public SRAMCircularFifoRange(uint baseOffset, uint limit, ArrayMemory underlyingMemory) in SRAMCircularFifoRange()
878 private readonly ArrayMemory underlyingMemory;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MTD/
DOpenTitan_FlashController.cs421 infoFlash = new ArrayMemory[FlashNumberOfBanks, FlashNumberOfInfoTypes]; in OpenTitan_FlashController()
426 …infoFlash[bankNumber, infoType] = new ArrayMemory(FlashNumberOfPagesInInfo[infoType] * BytesPerPag… in OpenTitan_FlashController()
904 private readonly ArrayMemory[,] infoFlash;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/
DOpenTitan_OneTimeProgrammableMemoryController.cs41 underlyingMemory = new ArrayMemory(0x1000); in OpenTitan_OneTimeProgrammableMemoryController()
614 private readonly ArrayMemory underlyingMemory;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/MSP430X/
DMSP430X.cs30 if(ev.Peripheral is ArrayMemory arrayMemory) in MSP430X()
1524 …private readonly SortedList<ulong, ArrayMemory> arrayMemoryList = new SortedList<ulong, ArrayMemor…
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CAN/S32K3XX_FlexCAN/
DS32K3XX_FlexCAN.cs42 messageBuffers = new ArrayMemory(messageBufferRange.Size); in S32K3XX_FlexCAN()
946 private readonly ArrayMemory messageBuffers;
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DMachine.cs1715 …gistration in SystemBus.GetRegistrationsForPeripheralType<Peripherals.Memory.ArrayMemory>(context)) in PostCreationActions()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DSystemBus.cs204 if(peripheral is ArrayMemory) in MoveRegistrationWithinContext()