20 void RamDSKDiskImage::readSectorImpl(
size_t sector,
byte* buf)
22 memcpy(buf, &diskdata[sector *
SECTOR_SIZE], SECTOR_SIZE);
25 void RamDSKDiskImage::writeSectorImpl(
size_t sector,
const byte* buf)
27 memcpy(&diskdata[sector *
SECTOR_SIZE], buf, SECTOR_SIZE);
30 bool RamDSKDiskImage::isWriteProtectedImpl()
const