From: "Johnny Chan" To: Subject: RE: deriving the interrupt vector Date: Thu, 7 Oct 1999 13:22:54 -0700 Message-ID: <001201bf1101$bd633c20$ae3d7a86@phoenix.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Importance: Normal In-Reply-To: <199910072342.RAA11101@lakdiva.slt.lk> Reply-To: djgpp AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk Does the REGS support EAX? --jC >> >> union REGS r; >> r.x.ax = 0x0100; >> r.h.dl = 'c'; >> int86(0x21, &r, &r); >> >>In int86x you can also pass the segment registers(ES,DS ...etc) >>through and additional SREGS structure. >>The above are the easiest but you might also want to check out the >>_go32_dpmi_simulate_int function. >>Hope this helps! >>Bye. >>Kalum S >>