Guest User

Untitled

a guest
Apr 24th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   ld hl,$9a00        ; sets up interupt table at $8B00
  2.   ld de,$9a01       ; sets pointer 1 past to fill
  3.   ld bc,$100            ; fill 267 blocks
  4.   ld (hl),$8a         ; with $8a
  5.   ldir
  6.      
  7.    
  8. ; set interupt to jump to my interupt code
  9.  
  10.   ld a,$c3             ;load a with jp xxxx
  11.   ld ($8A8A),a       ; load 8a8a with , jp xxxx
  12.   ld hl,Interupt      ; load hl with pointer to the interupt
  13.   ld ($8A8B
Add Comment
Please, Sign In to add comment