From: "Rafał Maj" Newsgroups: comp.os.msdos.djgpp Subject: Text Mode C80 Date: Sun, 17 Sep 2000 17:33:16 +0200 Organization: Academic Computer Center CYFRONET AGH Lines: 23 Message-ID: <8q2o5f$hru$1@info.cyf-kr.edu.pl> NNTP-Posting-Host: d-94-53-17.cyfronet.krakow.pl X-Trace: info.cyf-kr.edu.pl 969204719 18302 149.156.1.177 (17 Sep 2000 15:31:59 GMT) X-Complaints-To: news AT cyf-kr DOT edu DOT pl NNTP-Posting-Date: 17 Sep 2000 15:31:59 GMT X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Does somebody know, how to set text mode C80 80x25 color ? Thanks, Rafal PS ! :) I don't want to use textmode()... I want to use assembler (buildin) For example, VGA mode 320*200*8bpp can be activated by calling interrupt 0x10 with AX=0x13 But how to write this in DJGPP assembler ??? I don't want use any extern assembler compiler, just this build-in. like : void mode_c80(); { // ???? mov ax,0x13 int 0x10 // ???? }