home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / pascal / swag / hardware.swg / 0020_Quick Reset and BOOT.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1993-11-02  |  145 b   |  11 lines

  1. {Laurent M. CHARTINIER}
  2. {computer do a RESET using a small Pascal routine?}
  3.  
  4. Procedure Reboot;
  5. Begin
  6.  Asm
  7.   JMP FFFF:0000
  8.  End;
  9. End;
  10.  
  11.