Is this correct
.386
.MODEL FLAT
.CODE
test_fld PROC
return_f32:
fld dword ptr [edx]
ret
return_f64:
fld qword ptr [edx]
ret
test_fld ENDP
END
test.asm(7): error: Invalid combination of opcode and operands (or wrong CPU setting).
test.asm(11): error: Invalid combination of opcode and operands (or wrong CPU setting).