Search results
Getting files back from sector
Score: 142.21 %,
Type: Forum topic , Comments: 10 comments
write_mem 0x7ff8 {[pc_in_slot 3 3]} fdc_cmd
proc fdc_cmd {} {
# check for read-sector command
if {($::wp_last_value & 0x80) != 0x80} return
# read CHS
set cylinder [debug read "slotted memory" 0xf7ff9]
set head [debug read "slotted memory" 0xf7ffc]
set sector [debug read ...
