Skip to content

Instantly share code, notes, and snippets.

@emreyh
Created May 30, 2014 09:13
Show Gist options
  • Save emreyh/8708e322fadff0e69d35 to your computer and use it in GitHub Desktop.
Save emreyh/8708e322fadff0e69d35 to your computer and use it in GitHub Desktop.
;sayiyi bcd ye ceçirme
stc
cmc
mvi B,009Ah; Baz alınan sayı
mvi A,0 ;
lxi H,0 ; sonuç HL'de saklanacak
basla: adi 1; A'ya 1 ekle
daa ; A'yı BCD'ye çevir
jnc eldesiz ; Çevirme sonucunda elde yoksa ilerle
inr H ;elde varsa H'yi (yani üst haneyi) artır
eldesiz: dcr B ;sayacı azalt
jnz basla ;sıfır değilse başa dön
mov L,A ;en sonunda A'yı L'ye aktar ve HL bloğunu tamamla
hlt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment