Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!ceres.physics.uiowa.edu!news.iastate.edu!cs442a07 Newsgroups: comp.lang.pascal Subject: Re: Rebooting from TP Message-ID: From: cs442a07@cs.iastate.edu (Sunny Gulati) Date: Mon, 13 May 1991 02:28:49 GMT Reply-To: cs442a07@zippy.cs.iastate.edu Sender: news@news.iastate.edu (USENET News System) References: <48883@ut-emx.uucp> Distribution: usa Organization: Iowa State University, Ames IA Lines: 27 migdol@emx.utexas.edu (Michael A. Migdol) writes: >Hi, CLP'ers! Think I've got an easy one for ya tonight: How can I force a >machine reboot in TP? (The equivalent of a ctrl-alt-delete) Pretty easy. call the reboot interrupt. details in the interrupt list, wuarchive.wustl.edu, /mirrors/msdos/info/inter291.zip??? , It goes kinda like: store $1234 in some address, then call some interrupt. In pascal goes kinda like: var a:word absolute blah; regs: registers; a:=$1234; Intr(bloop,regs); >Thanks in advance! No problem. Any mistakes are due to finals. >***************************************************************************** >* Michael A. Migdol | Disclaimer: * >* migdol@emx.utexas.edu | "I may be wrong" * >* University of Texas, Austin | (Thanks Robert Fulghum!) * >***************************************************************************** >* "There's no such thing as a simple miracle" * >*****************************************************************************