My project in Delphi 10.1 has some assembly functions like this:
function MyFunc: Word;
asm
PUSH 0
FNSTCW [ESP].Word
POP EAX
end;
I need compile project in win64, but some lines like POP EAX
has E2116 Invalid combination of opcode and operands
Error.