Initial commit, basic lexer structure

This commit is contained in:
2025-03-30 17:45:51 +02:00
commit df948b18c6
13 changed files with 794 additions and 0 deletions

9
tests/input/valid.asm Normal file
View File

@ -0,0 +1,9 @@
_start:
mov eax, 555 ; move 555 into eax
push 0o777
xor eax, 0xDEADBEEF
and ecx, 0o770
mov edx, 0b01010101
push 0xffff:64
push 0o777:16
push 0b0001:16