A82: Halt command


[Prev][Next][Index][Thread]

A82: Halt command




   What would cause a halt command to crash? 

example:
  delay:   ;crashes
    ld b,20
  delay2:
    halt
    djnz Delay2
    ret

  delay:   ;works
    ld b,20
  delay2:
    push bc
    pop bc
    djnz Delay2
    ret

  I found a way to shrink BD by 960 bytes. The process involves writing 
screen data to APD_BUF and displaying it with ROM_CALL(RESTOR_DISP), 
would this cause the halt command to freeze the calc?
  

______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com


Follow-Ups: