Text only
|
Text with Images
The MASM Forum Archive 2004 to 2012
General Forums => The Workshop => Topic started by: Siekmanski on September 08, 2011, 05:11:48 PM
Title:
NASM syntax
Post by:
Siekmanski
on
September 08, 2011, 05:11:48 PM
How can I translate this NASM syntax to MASM:
and eax,15^-1
Masm gives this error "error A2044:invalid character in file"
Title:
Re: NASM syntax
Post by:
qWord
on
September 08, 2011, 05:14:15 PM
Code
Select
Expand
and eax,15 XOR -1
Title:
Re: NASM syntax
Post by:
Siekmanski
on
September 08, 2011, 05:20:07 PM
:bg Thanx
Text only
|
Text with Images