Date: Thu, 14 Jun 2001 11:21:04 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: birkoss cc: djgpp AT delorie DOT com Subject: Re: DJGPP Asm problems In-Reply-To: <3B281DE4.6D242A5A@QhaSecurity.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII 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 On Wed, 13 Jun 2001, birkoss wrote: > I create some function in Asm, but sometime, and on the other computer, > it didn't work, why ? One possible reason is that you didn't tell GCC what registers does your inline assembly clobber. More importantly, I don't understand why did you need to write this in inline assembly instead of in C? It's so much simpler: just use the __dpmi_int library function.