6502bench
6502bench copied to clipboard
A workbench for developing 6502 code
I do believe we have talked about this via mail, and I can see aspects of how this would be difficult, but I would really like to see multifile support....
In my deeds where I use 6502 bench, I most often use it to document the code I am working with. So the modus operandi is running the code in...
My understanding is that ïf a program start is set manually, 6502 bench traverses based on that and that these are store in an array. Some of functions can add...
In a current project, I have a `JMP ()`. To me this should make the `` a word, that is also defined as an address, and there should be a...
I am disassembling the Apple IIc ROM Rev3 (345-0445-A), bank 1. Starting in $C800, I am getting a bunch of instructions decoded with a "▼." Which leads to a confusing...
The region function works really well, but once defined and you realise that you need to change the end of it, you can't. Is there any reason it's not possible...
I am not really sure I have thought this all through yet, so just see this as food for thought; If you disassemble a big chunk of data, it will...
Sometimes an address represents more than one thing. A somewhat contrived example: ``` ldx #$7f jsr Delay ... Delay dex bne Delay rts ``` It might be more readable to...
_(There have been a number of requests for enhancements to the address table formatter. I'm collecting them here.)_ The "Format Address Table" feature formats tables of addresses. These can come...
The project file is currently serialized and deserialized with `JavaScriptSerializer` from `System.Web.Script.Serialization`. This is an older library that lacks some features, which is why the SourceGen implementation does a series...