예제 #1
0
파일: MassStorage.cs 프로젝트: rte-se/emul8
 public MassStorage(string underlyingFile, int? numberOfBlocks = null, int blockSize = 512, bool persistent = true)
 {
     lbaBackend = new LBABackend(underlyingFile, numberOfBlocks, blockSize, persistent);
     Init();
     
 }
예제 #2
0
파일: MassStorage.cs 프로젝트: rte-se/emul8
 public MassStorage(int numberOfBlocks, int blockSize = 512)
 {
     lbaBackend = new LBABackend(numberOfBlocks, blockSize);
     Init();
 }