Skip to content

Automatically fix trivial errors #2

Open
@jia3ep

Description

@jia3ep

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]:

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions