1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-05 10:28:58 +00:00

Provides empty data for the unimplemented sectors.

This commit is contained in:
Thomas Harte 2019-09-07 13:17:53 -04:00
parent bee782234a
commit cb0d994827

View File

@ -45,7 +45,7 @@ std::vector<uint8_t> Mapper::convert_source_block(ssize_t source_address, std::v
uint8_t(total_device_blocks),
/* number of blocks on device */
0x00, 0x00, /* reserved */
0x00, 0x00, /* reserved (device ID?) */
0x00, 0x00, /* reserved */
0x00, 0x00, /* reserved */
@ -59,6 +59,9 @@ std::vector<uint8_t> Mapper::convert_source_block(ssize_t source_address, std::v
return driver_description;
}
case -4: case -3: case -2: case -1: /* TODO */
return std::vector<uint8_t>(512);
default: return source_data;
}
}