Progress is being made on the disassembler; going in alphabetical order, I am now at MOV. Note that many instructions not used within zeptoforth are being omitted, and even then it will almost certainly be very large in memory footprint (it will likely have to be compiled to flash, as if it fits in RAM in the first place it will likely take up a good portion of it).
Discussions
Become a Hackaday.io Member
Create an account to leave a comment. Already have an account? Log In.
I assume that your use case for the disassembler is debugging in a self-contained development environment. In that case it might be interesting to decode what you use but also detect (but not necessarily decode) instructions that you don't intend to use. This could even be turned into a safety feature.
Are you sure? yes | no
I am really implementing a disassembler so the user has access to SEE. About detecting instructions that I do not decode, I still need to add entries to my instruction tables, which would still take up more memory. Whether I do that depends on just how much memory it takes up.
Are you sure? yes | no
I see, this makes sense :-)
Are you sure? yes | no