Open luizfernandonb opened 1 month ago
I'm afraid the .FPO directive isn't implemented in either JWasm or Masm ( up to v10 ). Since Masm doesn't offer "frame pointer omission", it seems a bit moot ( even more so because it's meant for debugging support only ).
I was trying to learn MASM and I saw about
.FPO
, I tried to use it in my code and it didn't work, it gave me a syntax error, but if I compile without.FPO
it worksHere's some code to serve as an example:
If you remove the .FPO and compile it works normally
One point that I found curious, if you don't use the
-Zm
parameter, the FPO name doesn't appear in the errorWith
-Zm
:Without
-Zm
:Documentation about the FPO