Page 1 of 1

MASM and PB

Posted: Sun Jan 29, 2006 12:20 am
by SFSxOI
Can 32 bit Microsoft Assembly (MASM) also be used in inline PB code?

(http://www.masm32.com/)

Just curious.

Thanks :)

Posted: Sun Jan 29, 2006 2:09 am
by Dare2
Hi SFSxOI,

In short, no.

Although the two (masm/fasm) have a lot in common, so you might write Fasm asm thinking you were writing Masm asm. :)

PureBasic "converts" PureBasic code to asm for Fasm, and the inline stuff is given to Fasm as-is (more or less). Fasm then creates the executable. Masm is nowhere in sight during this process.

Posted: Sun Jan 29, 2006 2:12 am
by SFSxOI
Ahhh, Ok i see now. Thanks Dare2