home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / c128 / text / examples.arc / COLD.A < prev    next >
Text File  |  1989-12-01  |  401b  |  16 lines

  1. ; cold.asm
  2. ;====================
  3. ; Reset the computer
  4. ;====================
  5.                                   
  6. star        = $0b00               
  7.             .wor star             
  8.             * = star              
  9.  
  10.             jmp cold
  11.             dw Date
  12.                       
  13. cold        jmp ($fffc)           
  14.                                   
  15.             .end                  
  16.