Initial commit, can read from a list of files passed.

This commit is contained in:
2021-12-28 20:09:33 +00:00
commit 5162804270
3 changed files with 50 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
; comments are ignored
; This is a very simple test file for an assemblier.
mov r1, 5 ; move the immediate value 5 into r1
add r1, 5 ; add 5 into r1
int 21 ; maybe that will call some string drawing BIOS-like routine
ret ; return from 'call' if there were such a thing