[JWasm move] Fix the interrupt vector declarations in c0[data].asm

The leniency! It hurts!
This commit is contained in:
nmlgc 2014-11-19 07:26:12 +01:00
parent af1ce6cad8
commit e551d590bd
1 changed files with 4 additions and 4 deletions

View File

@ -31,10 +31,10 @@ ZeroDivMSG db 'Divide error', 13, 10, 0
; steal these vectors during execution. ; steal these vectors during execution.
; Note: These vectors save area must not be altered ; Note: These vectors save area must not be altered
; without changing the save/restore logic. ; without changing the save/restore logic.
PubSym@ _Int0Vector <dd 0>, __CDECL__ PubSym@ _Int0Vector, <dd 0>, __CDECL__
PubSym@ _Int4Vector <dd 0>, __CDECL__ PubSym@ _Int4Vector, <dd 0>, __CDECL__
PubSym@ _Int5Vector <dd 0>, __CDECL__ PubSym@ _Int5Vector, <dd 0>, __CDECL__
PubSym@ _Int6Vector <dd 0>, __CDECL__ PubSym@ _Int6Vector, <dd 0>, __CDECL__
; Miscellaneous variables ; Miscellaneous variables
PubSym@ _C0argc, <dw 0>, __CDECL__ PubSym@ _C0argc, <dw 0>, __CDECL__
dPtrPub@ _C0argv, 0, __CDECL__ dPtrPub@ _C0argv, 0, __CDECL__