Home
last modified time | relevance | path

Searched defs:SDCard (Results 1 – 2 of 2) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SD/
DSDCard.cs26 public class SDCard : ISPIPeripheral, IDisposable class
28 … public SDCard(long capacity, bool spiMode = false, BlockLength blockSize = BlockLength.Undefined) in SDCard() method in Antmicro.Renode.Peripherals.SD.SDCard
31 …public SDCard(string imageFile, long capacity, bool persistent = false, bool spiMode = false, Bloc… in SDCard() method in Antmicro.Renode.Peripherals.SD.SDCard
34 …private SDCard(Stream dataBackend, long capacity, bool spiMode = false, BlockLength blockSize = Bl… in SDCard() method in Antmicro.Renode.Peripherals.SD.SDCard
DSDCardExtensions.cs24 …static void SdCardFromFile(this IMachine machine, string file, IPeripheralRegister<SDCard, NullReg… in SdCardFromFile()