Searched refs:Memory (Results 1 – 25 of 64) sorted by relevance
123
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Memory/ |
| D | GenericI2cEeprom.cs | 16 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 …]
|
| D | ArrayMemoryWithReadonlys.cs | 11 namespace Antmicro.Renode.Peripherals.Memory
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/PCI/BAR/ |
| D | IOBaseAddressRegister.cs | 36 Memory = 0, enumerator
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/ |
| D | Micron_MT25Q.cs | 8 using Antmicro.Renode.Peripherals.Memory;
|
| D | Cypress_S25H.cs | 9 using Antmicro.Renode.Peripherals.Memory;
|
| D | Macronix_MX25R.cs | 9 using Antmicro.Renode.Peripherals.Memory;
|
| D | NANDFlash.cs | 12 using Antmicro.Renode.Peripherals.Memory;
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/SiLabs/ |
| D | DeviceInformation.cs | 8 using Antmicro.Renode.Peripherals.Memory;
|
| D | EFM32xGDeviceInformation.cs | 10 using Antmicro.Renode.Peripherals.Memory;
|
| D | EZR32DeviceInformation.cs | 10 using Antmicro.Renode.Peripherals.Memory;
|
| D | EFM32xG1xBDeviceInformation.cs | 10 using Antmicro.Renode.Peripherals.Memory;
|
| D | EFR32DeviceInformation.cs | 10 using Antmicro.Renode.Peripherals.Memory;
|
| D | EFR32xG12DeviceInformation.cs | 10 using Antmicro.Renode.Peripherals.Memory;
|
| D | EFR32xG2_LockbitsData.cs | 15 using Antmicro.Renode.Peripherals.Memory;
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/ |
| D | MemoryTests.cs | 13 using Antmicro.Renode.Peripherals.Memory;
|
| D | PeripheralsGroupTests.cs | 13 using Antmicro.Renode.Peripherals.Memory;
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MTD/ |
| D | STM32_FlashController.cs | 16 using Antmicro.Renode.Peripherals.Memory;
|
| D | CC2538FlashController.cs | 14 using Antmicro.Renode.Peripherals.Memory;
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/ |
| D | OpenTitan_ScrambledMemory.cs | 11 using Antmicro.Renode.Peripherals.Memory;
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Video/ |
| D | LiteX_Framebuffer.cs | 15 using Antmicro.Renode.Peripherals.Memory;
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Memory/ |
| D | ArrayMemory.cs | 18 namespace Antmicro.Renode.Peripherals.Memory
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Test/PeripheralsTests/ |
| D | OpenTitan_KeyManagerTest.cs | 10 using Antmicro.Renode.Peripherals.Memory;
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/MonitorTests/CommandTests/ |
| D | PythonCommands.cs | 21 using Antmicro.Renode.Peripherals.Memory;
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/MemoryControllers/ |
| D | Gaisler_FaultTolerantMemoryController.cs | 16 using Antmicro.Renode.Peripherals.Memory;
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/DMA/ |
| D | DmaEngine.cs | 12 using Antmicro.Renode.Peripherals.Memory;
|
123