A basic assembler for chip8 virtual machine "ld [I], Vx" and "ld Vx, [I]" instructions are not implemented Supports .incbin and .byte directive to include binaries into source file and define bytes Has label support for instruction that takes address as operand
Work in progress don't rely on it
Example program:
;This a comment
cls
ld v0, 0x0
ld v1, 0
loop:
ld v3, k
ld f, v3
cls
drw v0, v1, 5
jp loop