mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
16 lines
246 B
NASM
16 lines
246 B
NASM
;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
; test the use of bank addresses
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
org 00100
|
|
lac exp ; put value in high memory
|
|
dac *ihigha ;
|
|
cla ;
|
|
lac *ihigha ;
|
|
sam exp
|
|
hlt ;
|
|
hlt ;
|
|
; data
|
|
ihigha data 010000 ;
|
|
exp data 012345 ;
|
|
end
|