home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / sigm / vol236 / accscb.mac < prev    next >
Encoding:
Text File  |  1986-02-13  |  195 b   |  18 lines

  1.         .z80
  2.  
  3.         entry accscb
  4.  
  5. bdos    equ 5
  6.  
  7. accscb: ld a,(hl)
  8.         ld (scbpb),a
  9.         ld c,49
  10.         ld de,scbpb
  11.         jp bdos
  12.  
  13. scbpb:  ds 1
  14.         db 0
  15.         ds 2
  16.  
  17.         end
  18.