1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00

More staged test files

This commit is contained in:
Ross Wilson 2016-01-27 10:45:50 +07:00
parent 189079a9c7
commit f338a29ba3
3 changed files with 27 additions and 17 deletions

View File

@ -1,21 +1,6 @@
; a test comment on the first line
; a very simple 'smoke-test' file
org 0100
start law 10
lac start2 ; comment
lac .-2
; lac undef ; another comment
hlt
fred equ 2 ; EQU
; org 128 + 1
org . + 010
start2
lac start + 2 ; comment
nop
string data 'ascii'
hlt
start hlt
end start

17
pyasm/test2.asm Normal file
View File

@ -0,0 +1,17 @@
; a test comment on the first line
org 0100
start law 10
lac start2 ; comment
lac .-2
hlt
fred equ 2 ; EQU
org . + 010
start2
lac start + 2 ; comment
string data 'ascii'
end hlt
end start

8
pyasm/test3.asm Normal file
View File

@ -0,0 +1,8 @@
; a file containing an undef
org 0100
start law 10
lac undef ; another comment
hlt
end start