|
-
Aug 24th, 2001, 05:21 PM
#1
Thread Starter
Member
NASM or MASM?
i want to learn asm for mainly win32 programing, and i was wondering which is better, MASM or NASM? And where can i get NASM?
-
Aug 24th, 2001, 08:12 PM
#2
Frenzied Member
-
Aug 24th, 2001, 08:57 PM
#3
Just try them both, you will never know until you do.
http://nasm.2y.net/
-
Aug 25th, 2001, 03:10 PM
#4
For windows 32-Bit program you MUST get MASM 6.x If you get anything else for Windows ASM programming, you will spend a LOT more time on stuff you can never use. Get MASM. MAke sure you ALSO get the LIST of API calls because in MASM you can use them.
I tried to make a 32Bit program in NASM and I ended up with problems because NASM has a hard time compiling EXTENSIVE high end programs that are HUGE. MASM can do it.
However, for all other reasons, get NASM. I use NASM for making my OS.
Do you get the difference now?
-
Aug 25th, 2001, 04:14 PM
#5
I made a win32 app in nasm. It sucks though because the support for structs in nasm is really bad.
-
Aug 25th, 2001, 07:29 PM
#6
Thread Starter
Member
thanks a lot for the info. guys, i'll use masm
-
Sep 4th, 2001, 06:46 PM
#7
Would I be right in assuming that MASM requires some DLLs to run? I've noticed it supports some HLL (High-Level Language) syntax such as If...Then...Else
-
Sep 4th, 2001, 08:11 PM
#8
Nope.
This...
Code:
.if eax == 0
.
.
.
.endif
Turns into something like this...
Code:
cmp eax, 0
jne label1
.
.
.
label1:
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|