home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ARM Club 1
/
ARM_CLUB_CD.iso
/
contents
/
apps
/
emulate
/
progs
/
z80card
/
source
/
1
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-04-12
|
181 b
|
11 lines
;sum the two numbers supplied by the Arc in locations
;hex 20 and 21, producing a result in hex 22 for the Arc
;to verify
ORG 0
LD A,($20)
LD B,A
LD A,($21)
ADD A,B
LD ($22),A
HALT