Created
May 30, 2014 09:10
-
-
Save emreyh/8661bf0ef1d69ba41888 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;Bu program 16 bit iki sayıyı | |
;toplayarak bellege kaydediyor | |
stc | |
cmc | |
call topla | |
lhld 0200H | |
xchg | |
lhld 0202h | |
mov a,e | |
add l | |
mov l,a | |
mov a,d | |
adc h | |
mov h,a | |
shld 0204H | |
hlt | |
topla: lxi h,0200H | |
lxi b,0AAAAH | |
lxi d,0DDDDH | |
mov m,c | |
inx h | |
mov m,b | |
inx h | |
mov m,e | |
inx h | |
mov m,d | |
ret |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment