❔ P/Invoke x86 ASM
I have the following x86 assembly function:
I am compiling it into a win64 dll using NASM:
The consuming project is set to 64 bit:
Bindings in C#:
Does anyone have any idea what format this should be in for the runtime to accept, I assumed using the same platform architecture and CDECL calling conventions would be enough for this to work.
Thanks
I am compiling it into a win64 dll using NASM:
nasm -f win64 maths.asm -o maths.dllThe consuming project is set to 64 bit:
Bindings in C#:
Does anyone have any idea what format this should be in for the runtime to accept, I assumed using the same platform architecture and CDECL calling conventions would be enough for this to work.
Thanks