This commit is contained in:
2024-08-07 09:12:07 -04:00
parent ca445435a0
commit fdfadd5c7e
1021 changed files with 73601 additions and 0 deletions

27
as68hc11/code/test6.asm Normal file
View File

@@ -0,0 +1,27 @@
RAM equ 0000h
THIS equ 0010h
THAT equ 0020h
OTHER equ 0030h
LONG equ 0080h
org RAM
bra THIS
org THIS
bra OTHER
org THAT
princ:
inx
bra end
org OTHER
bra princ
end:
bra LONG
org LONG
ldab LONG
rts