From: michael DOT mauch AT gmx DOT de (Michael Mauch) Newsgroups: comp.os.msdos.djgpp Subject: Re: DJGPP, interprocess communication, and DPMI Date: Wed, 24 Sep 1997 13:08:20 +0200 Organization: Gerhard-Mercator-Universitaet -GH- Duisburg Lines: 25 Message-ID: <3428f481.28082079@news.uni-duisburg.de> References: <341FEC5F DOT 77F2 AT EnchantedLearning DOT com> <342af973 DOT 373934 AT news DOT uni-duisburg DOT de> NNTP-Posting-Host: ppp60.uni-duisburg.de Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk On Tue, 23 Sep 1997 19:27:25 +0200, michael DOT mauch AT gmx DOT de (Michael Mauch) wrote: > NotSetFlag: > cmp bx,2222h > mov bx,[cs:TheFlag] > jne GoHome > GoHome: Oops, this doesn't make much sense, sorry. Please replace these lines by: NotSetFlag: cmp bx,2222h jne GoHome mov bx,[cs:TheFlag] GoHome: Now I'm trying to implement line buffering to make it a little faster. Having the sender program install a callback function in the receiver program would be a nice idea, too. Maybe in the end we'll have kind of a "terminal" for debugging purposes. Regards... Michael