Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!purdue!gatech!mcnc!ncsuvx!csclea!sherman From: sherman@csclea.ncsu.edu (Chris Sherman) Newsgroups: comp.lang.c Subject: TSR's with TC Summary: How do I do a _chain_intr in TC? Message-ID: <3723@ncsuvx.ncsu.edu> Date: 22 Aug 89 04:07:15 GMT Sender: news@ncsuvx.ncsu.edu Reply-To: sherman@csclea.UUCP (Chris Sherman) Organization: North Carolina State University Lines: 16 I'm using TC to rewrite a TSR that was written in MSC. The program makes use of a function called _chain_intr. TC does not have this function. _chain_intr, which is usually used in an interrupt handler, accepts the address of another interrupt handler, and jumps (not calls) over to it. It is as if the first handler was never called. What can I do in TC to achieve the same effect? I thought of calling the second interrupt handler like you would call any function, given its address, but I'm not sure this will work correctly every time. I appreciate any help. Thanx... Paul C. Sherman sherman@csclea.ncsu.edu