Date: Mon, 15 Oct 2001 21:57:20 +0200 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: "Bart van den Burg" Message-Id: <3028-Mon15Oct2001215719+0200-eliz@is.elta.co.il> X-Mailer: Emacs 20.6 (via feedmail 8.3.emacs20_6 I) and Blat ver 1.8.9 CC: djgpp AT delorie DOT com In-reply-to: <9qf2jk$2k7$1@cyan.nl.gxn.net> (bart@bart99.tmfweb.nl) Subject: Re: assembly References: <9qf07f$1t6$1 AT cyan DOT nl DOT gxn DOT net> <9qf1s1$51v$1 AT nets3 DOT rz DOT RWTH-Aachen DOT DE> <9qf2jk$2k7$1 AT cyan DOT nl DOT gxn DOT net> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > From: "Bart van den Burg" > Newsgroups: comp.os.msdos.djgpp > Date: Mon, 15 Oct 2001 18:26:40 +0200 > > how would I change to screen mode 13 with GCC then in asm? Why do you need to do that in assembly? What's wrong with the following? #include __dpmi_regs r; r.x.ax = 0x13; __dpmi_int (0x10, &r);