1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-09 05:25:01 +00:00

Corrected 'read deleted data' command. It's 0xc, not 0xb.

This commit is contained in:
Thomas Harte
2017-08-14 21:41:20 -04:00
parent 55055c7847
commit 0816d3f5a9

View File

@@ -243,7 +243,7 @@ void i8272::posit_event(int event_type) {
static const size_t required_lengths[32] = {
0, 0, 9, 3, 2, 9, 9, 2,
1, 9, 2, 9, 0, 6, 0, 3,
1, 9, 2, 0, 9, 6, 0, 3,
0, 9, 0, 0, 0, 0, 0, 0,
0, 9, 0, 0, 0, 9, 0, 0,
};
@@ -274,7 +274,7 @@ void i8272::posit_event(int event_type) {
// Jump to the proper place.
switch(command_[0] & 0x1f) {
case 0x06: // read data
case 0x0b: // read deleted data
case 0x0c: // read deleted data
goto read_data;
case 0x05: // write data
@@ -329,7 +329,7 @@ void i8272::posit_event(int event_type) {
// Branch to whatever is supposed to happen next
switch(command_[0] & 0x1f) {
case 0x06: // read data
case 0x0b: // read deleted data
case 0x0c: // read deleted data
goto read_data_found_header;
case 0x05: // write data