Advertisement
Guest User

Untitled

a guest
Apr 7th, 2020
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .equ adres_pocz=0x2f0
  2. .equ adres_konc=0x300
  3. .equ liczba_pocz=0xAA
  4.  
  5. pocz:
  6.     ldi r16, liczba_pocz
  7.     ldi XL, low(adres_pocz)
  8.     ldi XH, high(adres_pocz)
  9.  
  10.  
  11.    
  12. petla:
  13.     cpi XL, low(adres_konc + 1)
  14.     brbc 1, wpisz
  15.     cpi XH, high(adres_konc + 1)
  16.     brbc 1, wpisz
  17.     jmp koniec
  18. wpisz:
  19.     st X+, r16
  20.     jmp petla
  21.  
  22. koniec:
  23.     jmp koniec
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement