The MASM Forum

General => The Campus => Topic started by: sunshine33 on January 08, 2019, 06:20:37 AM

Title: What is the difference between MASM and MASM32 ?
Post by: sunshine33 on January 08, 2019, 06:20:37 AM
I was looking for a book on MASM32 , but only found this book instead .

Microsoft MASM Programmer's Guide, Version 6.1, 1992

http://people.sju.edu/~ggrevera/arch/references/MASM61PROGUIDE.pdf (http://people.sju.edu/~ggrevera/arch/references/MASM61PROGUIDE.pdf)

Is there a lot of difference between MASM and MASM32 ?
Title: Re: What is the difference between MASM and MASM32 ?
Post by: dedndave on January 08, 2019, 06:24:33 AM
MASM is the Microsoft Macro Assembler
a tool written by microsoft to aide in the process of writing assembly language programs
several versions have existed, some going all the way back to early versions of DOS

Masm32 is, for the most part, a library package created by Hutch (et al)
it is intended to get you started writing assembly language programs for windows 32 operating systems
it includes all sorts of stuff, not the least of which is the include files needed to write ASM code for 32-bit windows
these include files have windows API function prototypes, constant and structure definitions, and so on

Masm32 also incudes this forum   :biggrin:
Title: Re: What is the difference between MASM and MASM32 ?
Post by: sunshine33 on January 08, 2019, 06:30:57 AM
Thanks a lot for the reply .

Is there any book on MASM32 i can buy from amazon ?
Title: Re: What is the difference between MASM and MASM32 ?
Post by: GoneFishing on January 08, 2019, 06:36:51 AM
Quote from: dedndave on January 08, 2019, 06:24:33 AM
...
Masm32 also incudes this forum   :biggrin:

Amen  :P
Title: Re: What is the difference between MASM and MASM32 ?
Post by: dedndave on January 08, 2019, 07:03:28 AM
the masm32 package has a lot of the documentation you will need
just look in the masm32\help folder   :t

as far as i know, there is no hard-copy book associated with the library package
Title: Re: What is the difference between MASM and MASM32 ?
Post by: sunshine33 on January 08, 2019, 07:14:24 AM
Thanks a lot for all the replies
Title: Re: What is the difference between MASM and MASM32 ?
Post by: HSE on January 08, 2019, 07:25:36 AM
Some related books:



(https://1.bp.blogspot.com/-x2GjUnntx2g/WCi8lDgNVqI/AAAAAAAAUQI/T1HMeDC2fq8FPNIGPa_6Rw41zWwRbJE8gCLcB/s1600/IMG_3305.JPG)(http://www.austinhomebrew.com/assets/images/MALT-guide-web.jpg)(https://minibrew.s3.amazonaws.com/media/images/How_To_Brew_1024x1024.max-1124x1124.jpg)

Not what you are searching for, I think.  :biggrin:
Title: Re: What is the difference between MASM and MASM32 ?
Post by: felipe on January 08, 2019, 07:42:20 AM
 :biggrin: hse that was funny...
dedndave you give great replies, you should come more often  :bgrin:  :t
Title: Re: What is the difference between MASM and MASM32 ?
Post by: sunshine33 on January 08, 2019, 07:58:01 AM
Lol , One more question .
Where can i get a hard copy of this book to buy ?

Programmer's Guide Microsoft MASM Assembly Language Development System Version 6.1
For MS-DOS and Windows Operating Systems

Title: Re: What is the difference between MASM and MASM32 ?
Post by: hutch-- on January 08, 2019, 08:13:53 AM
Probably with difficulty, it was published in 1991 with MASM 6.1 so you are better off using the PDF you mentioned. Most of it is old MS-DOS technology so you are not missing much.
Title: Re: What is the difference between MASM and MASM32 ?
Post by: sunshine33 on January 08, 2019, 02:51:55 PM
Thanks