diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-03-27 20:30:26 +1100 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-03-27 20:30:26 +1100 |
commit | 5f11aac2f0a8c2bbc86180161d94158e890da285 (patch) | |
tree | 0ced043d977725e63bef8e09a32308f9f5544001 | |
parent | 9e2ce013ebcf17846f84549357b5715a48df659b (diff) |
debug.c > interpreter.c
-rw-r--r-- | interpreter.c (renamed from debug.c) | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,10 +1,12 @@ /* - * debug.c is a tool which can be used to interpret 6502 machine code inline. + * interpreter.c is a tool which can be used to interpret 6502 machine code inline. * Machine code is expected as hexadecimal of length 2 or 6, depending on the instruction. * Note that zero-page addressing is not fully emulated yet; it will still address the zero-page section of memory but the instructions still take an address of length 4. This will be fixed later when the whole system is functional. - * There are a few special keywords which have particular debugging meaning + * There are a few special characters which print debug information + d Prints main system information + mXXXX Prints contents of particular memory location */ #include"include.h" |