NASM - The Netwide Assembler

NASM Forum => Programming with NASM => Topic started by: Alfonso V on June 05, 2006, 10:32:22 AM

Title: far call
Post by: Alfonso V on June 05, 2006, 10:32:22 AM
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
Title: Re: far call
Post by: nobody on June 05, 2006, 01:28:57 PM
See answer in beginner's questions - I'm not certified for expert questions :)

Best,
Frank