diff options
| -rw-r--r-- | README.md | 8 | ||||
| -rw-r--r-- | code.asm | 4 |
2 files changed, 11 insertions, 1 deletions
@@ -1,4 +1,4 @@ -# 8-Bit CPU Simulator +# 8-Bit CPU Emulator ## Added instructions 1. MOV @@ -8,3 +8,9 @@ 5. JZ (Jump if zero) 5. JZ (Jump if not zero) 6. HLT (Halt) + +## Todo +- [ ] Assembler + - [ ] Lexer/Tokenizer +- [ ] Error handling +- [ ] Build Debugger diff --git a/code.asm b/code.asm new file mode 100644 index 0000000..09ecba8 --- /dev/null +++ b/code.asm @@ -0,0 +1,4 @@ +mov a, 10 +mov b, 5 +add a, b +hlt |
