update README.md

This commit is contained in:
krolxon 2026-01-04 23:59:29 +05:30
parent 1fc09b928e
commit 49e6897d79
2 changed files with 8 additions and 1 deletions

View File

@ -15,7 +15,8 @@ cargo run -- --f <filename.asc>
```
## Todo
- [x] Assembler
- [ ] Assembler
- [x] Lexer/Tokenizer
- [ ] Add label support (supporting JMP/JZ/JNZ)
- [ ] Error handling
- [ ] Build Debugger

View File

@ -1,4 +1,10 @@
; add
mov a, 10
mov b, 5
add a, b
; sub
mov a, 15
mov b, 15
sub a, b
hlt