MASM and PB

Everything else that doesn't fall into one of the other PB categories.
SFSxOI
Addict
Addict
Posts: 2970
Joined: Sat Dec 31, 2005 5:24 pm
Location: Where ya would never look.....

MASM and PB

Post by SFSxOI »

Can 32 bit Microsoft Assembly (MASM) also be used in inline PB code?

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

Just curious.

Thanks :)
Dare2
Moderator
Moderator
Posts: 3321
Joined: Sat Dec 27, 2003 3:55 am
Location: Great Southern Land

Post 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.
@}--`--,-- A rose by any other name ..
SFSxOI
Addict
Addict
Posts: 2970
Joined: Sat Dec 31, 2005 5:24 pm
Location: Where ya would never look.....

Post by SFSxOI »

Ahhh, Ok i see now. Thanks Dare2
Post Reply