Xref: news2.mv.net comp.os.msdos.djgpp:1415 From: lbaltha AT is1 DOT ulb DOT ac DOT be (Balthasar Laurent) Newsgroups: comp.os.msdos.djgpp Subject: Help requested for IPX programming Date: 20 Feb 1996 22:33:36 GMT Organization: ULB Student Lines: 44 Message-ID: <4gdi80$2nc@rc1.vub.ac.be> NNTP-Posting-Host: is1e.bfu.vub.ac.be Mime-Version: 1.0 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp I'm trying to convert some routines in asm with obj2c for ipx programming. The conversion seems to work but when i run i ve the message : INT 0xf not supported Exeption 47 here is the code in asm : ;------------------------------------------------------------------------ ------- ; Copyright (c) David Welch, 1995 ;------------------------------------------------------------------------ ------- ..386 ..model flat ..data public _ipxentry _ipxentry dd 0 ..code public _ipxinit _ipxinit: push di push es mov ax,7A00h int 2Fh cmp al,0FFh jnz _ipxinit0 mov word ptr [_ipxentry+0],di mov word ptr [_ipxentry+2],es _ipxinit0: mov dx,word ptr [_ipxentry+2] mov ax,word ptr [_ipxentry+0] pop es pop di retf => - What is wrong with this?? - Does anyone have some routines for djgpp to program an ipx interface? And if so is it possible to mail me it? Thanks.