aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md8
-rw-r--r--code.asm4
2 files changed, 11 insertions, 1 deletions
diff --git a/README.md b/README.md
index b9d68f2..1105403 100644
--- a/README.md
+++ b/README.md
@@ -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