Skip to content
Snippets Groups Projects
Commit b411dbd3 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Only check ah for bios error

parent 5eb8029d
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,8 @@ impl Disk for DiskBios {
data.with(self.thunk13);
//TODO: return result on error
assert_eq!({ data.eax }, 0);
let ah = ({ data.eax } >> 8) & 0xFF;
assert_eq!(ah, 0);
//TODO: check blocks transferred
dap = ptr::read(DISK_ADDRESS_PACKET_ADDR as *mut DiskAddressPacket);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment