I wrote a simple block of code to address windows virtual memory
push %eax
movl %ebx, %eax
and $0FFFFFFFFh, %eax
pop %eax
I get a few different errors regarding the expression 0FFFFFFFFh in that it is unable to interpret it as a memory address
Error: junk `FFFFFFFh' after expression
Error: missing or invalid immediate expression `0FFFFFFFFh'
I don't know what I could do to fix this, the code looks right, any help would be appreciated.