Initial
This commit is contained in:
28
as68hc11/code/test7.asm
Normal file
28
as68hc11/code/test7.asm
Normal file
@@ -0,0 +1,28 @@
|
||||
RAM equ 0000h
|
||||
THIS equ 0010h
|
||||
THAT equ 0020h
|
||||
OTHER equ 0030h
|
||||
LONG equ 0080h
|
||||
org RAM
|
||||
inx
|
||||
bra THIS
|
||||
org THIS
|
||||
bra OTHER
|
||||
org THAT
|
||||
princ:
|
||||
inx
|
||||
bra end
|
||||
org OTHER
|
||||
bra princ
|
||||
end:
|
||||
bra LONG
|
||||
org LONG
|
||||
ldab LONG
|
||||
rts
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user