home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / cpm / cpm68k / sd68k.lbr / ENDJOB.S < prev    next >
Encoding:
Text File  |  1986-06-11  |  384 b   |  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.