simulator -> emulator

This commit is contained in:
krolxon 2026-01-04 21:44:47 +05:30
parent d05f2980db
commit a566c1737b
2 changed files with 11 additions and 1 deletions

View File

@ -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

4
code.asm Normal file
View File

@ -0,0 +1,4 @@
mov a, 10
mov b, 5
add a, b
hlt