home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / CPM68K / SD68K.LBR / ENDJOB.S < prev    next >
Text File  |  2000-06-30  |  384b  |  17 lines

  1. ****    ENDJOB -- End Current Job (Process)
  2. **
  3. **    Function:
  4. **        Terminate the current process by performing a system reset
  5. **    Inputs: -none-
  6. **    Outputs: N/A
  7. **    Registes affected: N/A
  8. **    Routines called: -none-
  9. **    Special error conditions: -none-
  10. *
  11.     .globl    endjob
  12.     .text
  13. endjob:
  14.     clr    d0
  15.     trap    #2
  16.     .end
  17.