Hi,
I'm currently working on a project that makes use of TrueCrypt. To build TrueCrypt, both NASM and YASM assemblers are required (presumably because YASM supported 64bit before NASM).
I'm attempting to lose the dependency on YASM and have the project use NASM exclusively. However, I don't have a lot of assembly language experience and have come across a problem: I've changed all the YASM reference to use NASM, but visual studio complains about the undefined symbol 'rip'.
Is there a NASM equivalent to rip? The lines in question are:
lea tptr,[enc_tab wrt rip]
and
lea tptr,[dec_tab wrt rip]
Would it be as straight-forward as swapping the NASM equivalent in?
Many thanks,
Barry