I'm trying to convert a TASM source file containing all 8086 code to NASM format but I'm having a problem trying to convert this TASM line of code, this is the output from the assembly listing file:
304 0211 FF 1E 0242r call dword ptr oldptr
330 0242 0000 0000 oldptr dw 0,0
With BITS 16 and CPU 8086 set in my nasm sources and trying to use:
call dword [oldptr]
Results in:
error: no instruction for this cpu level
What syntax do I need to generate the equivalent 8086 machine code of 'FF 1E HHHH' ?