Hi all
I need to know how can i do a fall call to an ISR
I've tried with:
PUSHF
CALL FAR DWORD [direction]
But it crashed... :-(
There's a posibility with
JMP FAR [direction]
But I don't want it, because i need a far call, not a far jump.
There's another posibility with:
DB 9Ah
farlabel DD [direction]
¿How can i put my direction in "[direction]"
Nevertheless I'd like something like "CALL FAR DWORD"
Thank you