home *** CD-ROM | disk | FTP | other *** search
- {@@@@@@@@@@@ copyright (C) 1984 by Neil J. Rubenking @@@@@@@@@@@@@@@@@@@@@@@@
- The purchaser of these procedures and functions may include them in COMPILED
- programs freely, but may not sell or give away the source text.
-
- This short procedure does a System Reset ("warm reboot") by
- calling Interrupt $19. It is nearly equivalent to pressing
- <Ctrl><Alt><Del>. The System Reset does NOT do the initial
- reliability and system checks, so you can lie to the PC about
- Memory Size and Equipment by changing the appropriate memory
- locations and then rebooting.
- }
- procedure reBoot;
- var
- registers : integer; {we don't care what goes into or out of the registers}
- begin
- INTR($19,registers);
- {That was it!}
- end;