From: "Javier Arriero País" Newsgroups: comp.os.msdos.djgpp Subject: inline asm problem with DJGPP Date: 23 Sep 1997 00:51:19 GMT Organization: Unisource Espana NEWS SERVER Lines: 10 Message-ID: <01bcb53d$0b3b4f00$a4da4cc3@default> NNTP-Posting-Host: 195.76.218.164 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk When I write somethig like: asm("movb %ah,$0; movb %al,$0x13; int $10"); I get a error message: "operators given don't match any 380 instruction" from assembler (as.exe). Same days ago, I did't get any error... and I don't want to use If I write "movb %ah, 0" instead of "movb %ah,$0", i don't get any error, but my program don't change the graphic mode. What happen???