home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog-asm / adev11.lha / examples / test.a < prev    next >
Encoding:
Text File  |  1992-08-20  |  210 b   |  15 lines

  1.     processor 68HC11
  2.     RSEG CODE1
  3. label_001       LDX     #0
  4.         JSR     label_003
  5.         LDAA    #$0
  6.         JSR     label_004
  7.         CLI
  8.         RTS
  9.  
  10.     RSEG    CODE2
  11. label_004    rts
  12. label_003    rts
  13.  
  14.     END    label_001
  15.