hi,
i try to port an asm source code from a .asm write to ML under windows to a .asm which compil with nasm under linux and windows.
i have the following problem : in ML, i can write
switchtable LABEL DWORD DWORD OFFSET label00, OFFSET label01
jmp switchtable[eax] ; eax is my test condition
but in nasm all is label so how rewrite this 2 line ?
at this time i have use nasm local label to label00 and label01
thanks