View previous topic :: View next topic |
Author |
Message |
slippppppppp Grandmaster Cheater
Reputation: 0
Joined: 08 Aug 2006 Posts: 929
|
Posted: Mon Nov 19, 2007 5:31 pm Post subject: [Masm] Help |
|
|
I'm thinking of starting to learn Asm, and i need to figure out how to actually compile the dang file.
|
|
Back to top |
|
 |
HomerSexual Grandmaster Cheater Supreme
Reputation: 5
Joined: 03 Feb 2007 Posts: 1657
|
Posted: Mon Nov 19, 2007 5:32 pm Post subject: |
|
|
if memory serves me correct the MASM compiler has a build and comile function in the menu
_________________
|
|
Back to top |
|
 |
slippppppppp Grandmaster Cheater
Reputation: 0
Joined: 08 Aug 2006 Posts: 929
|
Posted: Mon Nov 19, 2007 5:42 pm Post subject: |
|
|
yes, but when i tried it, itll just say, .ASM not found.
|
|
Back to top |
|
 |
sponge I'm a spammer
Reputation: 1
Joined: 07 Nov 2006 Posts: 6009
|
Posted: Mon Nov 19, 2007 6:06 pm Post subject: |
|
|
Use command line... in assembly you do not compile, you assemble.
ml /c /coff ******.asm
link /SUBSYSTEM:WINDOWS *******.obj
That is for a basic executable w/ no resources and etc.
_________________
|
|
Back to top |
|
 |
HomerSexual Grandmaster Cheater Supreme
Reputation: 5
Joined: 03 Feb 2007 Posts: 1657
|
Posted: Mon Nov 19, 2007 6:13 pm Post subject: |
|
|
oh you have to save it as file.asm
It doesn't save as an asm in MASM compiler, it saves as just file. So save as->file.asm -> compile
_________________
|
|
Back to top |
|
 |
|