Advertisement
Adytzu04

lab4 Intreruperi

Oct 31st, 2013
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     ORG 0A000H
  2.    
  3. MAIN:   MVI A,80H
  4.     STA     LED
  5.     MVI A,1BH
  6.     SIM
  7.     EI
  8.  
  9. LOOP:   JMP LOOP
  10.  
  11.  
  12.     ORG 803CH
  13.  
  14. INT75:  LDA LED
  15.     RRC
  16.     STA LED
  17.     OUT 40H
  18.  
  19.     POP PSW
  20.     EI
  21.     RET
  22.  
  23.  
  24. LED:    DS  1  
  25.  
  26.     END
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement