I tried to compile the following code in FASM:
mov DWORD PTR [ebp - 4], 1234567
He gave me the error "Invalid Expression". However, the following code worked:
mov DWORD [ebp - 4], 1234567
So, FASM uses Intel syntax (I assume that the first line of code corresponds to Intel syntax)?
source
share