1
0
Fork 0

INT 0x2A vector wasn't set correctly

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@275
This commit is contained in:
Sjoerd van der Berg 2002-09-16 13:13:10 +00:00
parent 9376ece0e6
commit 7c7e296cb8

View file

@ -64,6 +64,6 @@ void DOS_SetupMisc(void) {
/* Setup the dos network interrupt */
call_int2a=CALLBACK_Allocate();
CALLBACK_Setup(call_int2a,&INT2A_Handler,CB_IRET);
RealSetVec(0x2A<<2,CALLBACK_RealPointer(call_int2a));
RealSetVec(0x2A,CALLBACK_RealPointer(call_int2a));
};