Open
Description
Floppy disk read errors are lead to an incorrect output assembler file. But we know the file format and could try to fix it. It should be a tool which shows fix suggestions and finally saves the fixed file to a specified location.
Example:
test/data/f_loader.hob file contains the following fragment:
40100 XOR A
40110 OUT (254),A:LD A,7
40111 LD (23624),A
40120 CHOPE LD A,2
The fixing tool could suggest the following fixes:
1:
40100 XOR A
40110 OUT (254),A ;LD A,7
40111 LD (23624),A
2:
40100 XOR A
40110 OUT (254),A
40111 LD A,7
40112 LD (23624),A
Select which fix to apply [1]: