I\'ve got the code segment and the offset values stored in two registers, say AX and BX respectively. In NASM how can I encode a far call to AX:B
AX
BX
AX:B
Here's one way of doing it:
push ax push bx retf