home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / program / books / 68k_book / arp_src / prg_2ac.s < prev    next >
Text File  |  1985-11-20  |  346b  |  16 lines

  1.  ; Program Name: COMBO.S
  2.  ;          aka: PRG_2AC.S
  3.  
  4.  move.l    up_1(pc), d0
  5.  move.l    up_2(pc), d0
  6.  move.l    #-4, d0
  7.  
  8.  move.l    #up_1-up_2,d0  ; (pc) can't be used with the labels here.
  9.  move.l    up_1-up_2, d0  ; (pc) can't be used with the labels here.
  10.  data
  11. pointer:   dc.l  up_1
  12. up_1:      dc.l  5
  13. up_2:      dc.l  3
  14.  end
  15.  
  16.