Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watnot!watmath!clyde!rutgers!lll-lcc!ptsfa!ihnp4!inuxc!pur-ee!j.cc.purdue.edu!tim From: tim@j.cc.purdue.edu.UUCP Newsgroups: comp.sys.ibm.pc Subject: Code to perform warm reboot. Message-ID: <3258@j.cc.purdue.edu> Date: Sun, 15-Feb-87 21:41:08 EST Article-I.D.: j.3258 Posted: Sun Feb 15 21:41:08 1987 Date-Received: Mon, 16-Feb-87 19:26:36 EST Reply-To: tim@j.cc.purdue.edu (Timothy Lange) Distribution: world Organization: PC Learning Resource Center, Purdue University Lines: 30 The following is Macro code to make an IBM PC and true compatibles perform a warm reboot. It has been tested on IBM PC, IBM AT, Zenith 148, 158, and 241. If someone desires an uuecoded file of the .COM please send me mail. Of course a few minutes with 'debug' will allow anyone to build the .COM file themselves. The program just makes a far jump to F000:FFF0. warm segment at 0f000h assume cs:warm org 0fff0h boot proc far ret boot endp warm ends ; code segment assume cs:code, ds:code org 100h jmp boot code ends end -- Timothy Lange PC Learning Resource Center Purdue University Computing Center West Lafayette, IN 47907 317-494-1787 tim@j.cc.purdue.edu