Skip to content

Instantly share code, notes, and snippets.

@emreyh
Created May 30, 2014 09:10
Show Gist options
  • Save emreyh/8661bf0ef1d69ba41888 to your computer and use it in GitHub Desktop.
Save emreyh/8661bf0ef1d69ba41888 to your computer and use it in GitHub Desktop.
;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