Message-ID: <8D53104ECD0CD211AF4000A0C9D60AE3579337@probe-2.acclaim-euro.net> From: Shawn Hargreaves To: djgpp AT delorie DOT com Subject: Re: Help : cannot switch screen mode Date: Mon, 22 Feb 1999 11:42:16 -0000 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.0.1460.8) Content-Type: text/plain Reply-To: djgpp AT delorie DOT com Laurynas Biveinis writes: > regs.x.ax = 0x0013; > _dpmi_int(0x10, ®s); [..] > But it doesn't work: on first _dpmi_int call I get: > > Exiting due to signal SIGSEGV There is no such function as _dpmi_int(); that should be __dpmi_int(). Let me guess: you have installed RSXNT, right? It replaces the standard linker (ld.exe) with one that won't complain about unresolved symbols, so this sort of error will just crash your program instead of giving a link error. Solution: go back to using the standard djgpp version of ld.exe. Shawn Hargreaves.