The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: CuiCan on August 25, 2010, 04:47:45 AM

Title: Where can i download source code?
Post by: CuiCan on August 25, 2010, 04:47:45 AM
Could anybody tell me somewhere to download assembly source code?
Title: Re: Where can i download source code?
Post by: dedndave on August 25, 2010, 06:21:28 AM
source code for what ?
there are miles of code out there
Title: Re: Where can i download source code?
Post by: jj2007 on August 25, 2010, 06:52:49 AM
Indeed. Go to The Laboratory (http://www.masm32.com/board/index.php?board=4.0), choose any thread, find inside the page ".zip", and here you go - real assembler code in quantities you can't digest.
Check also my tips & traps (http://www.webalice.it/jj2006/Masm32_Tips_Tricks_and_Traps.htm) page.
Title: Re: Where can i download source code?
Post by: GregL on August 25, 2010, 08:19:15 PM
CuiCan,

Download MASM32, it's full of example code.

Title: Re: Where can i download source code?
Post by: CuiCan on August 27, 2010, 04:02:58 AM
Oh,thank you all ! :bg
Title: Re: Where can i download source code?
Post by: mineiro on August 27, 2010, 04:12:21 AM
take a look above and click in link "Archived Old Forum Files", to get some examples.
regards.
Title: Re: Where can i download source code?
Post by: CuiCan on August 29, 2010, 01:53:38 PM
mineiro
Thank you !I have clicked it,but i cannot access it.You know,i cannot access some useful websites about assembler language programming in my country for some reason.
That really disappoint me. :(
Title: Re: Where can i download source code?
Post by: rags on August 29, 2010, 05:13:03 PM
It is probably because your paranoid Party Chairman thinks you may use that knowledge against them.
Title: Re: Where can i download source code?
Post by: Dragonfly on August 29, 2010, 07:43:23 PM
Where is lesson one in the "How to write assembly code"?
Title: Re: Where can i download source code?
Post by: jj2007 on August 29, 2010, 08:26:29 PM
Here it is:
include \masm32\include\masm32rt.inc

.code
AppName db "Masm32:", 0

start: mov eax, 123
MsgBox 0, str$(eax), addr AppName, MB_OK
exit

end start

Paste into \masm32\qeditor.exe, save as My1st.asm, and go to "Project: Build all".
Afterwards, you have My1st.exe for testing your result.
Title: Re: Where can i download source code?
Post by: Vortex on August 29, 2010, 08:28:34 PM
Quote from: Dragonfly on August 29, 2010, 07:43:23 PM
Where is lesson one in the "How to write assembly code"?

Win32 Assembly Tutorials by Iczelion :

http://win32assembly.online.fr/tutorials.html
Title: Re: Where can i download source code?
Post by: bomz on August 29, 2010, 08:31:36 PM
ICZELION answer "how to create window"

Introduction to Windows 32bit Assembler - requires you to have a basic asm knowledge. The goal is coding the "Hello World!" example.

(http://s50.radikal.ru/i130/0908/bb/dd7c8a96f9a4.gif)  find according to level of your knowledge and preference
Title: Re: Where can i download source code?
Post by: Vortex on August 29, 2010, 08:45:42 PM
MadWizard's Assembly tutorial :

http://www.madwizard.org/programming/tutorials

Art of Assembly Language :

http://homepage.mac.com/randyhyde/webster.cs.ucr.edu/HighLevelAsm/index.html
Title: Re: Where can i download source code?
Post by: bomz on August 29, 2010, 08:51:10 PM
I prefer textbook for students, because authors present the material so that was understandable to other people
Title: Re: Where can i download source code?
Post by: mineiro on August 30, 2010, 04:15:38 AM
Quote from: CuiCan on August 29, 2010, 01:53:38 PM
mineiro
Thank you !I have clicked it,but i cannot access it.You know,i cannot access some useful websites about assembler language programming in my country for some reason.
That really disappoint me. :(
I understand Sr CuiCan.
I don't have sure if this book is translated to your language, I learned alone with it(spend more than one year, many headcaches), this one is good to introduce you with instructions, modular project, presents a hexeditor, and don't lost the essence. After this one I start learning the icz tuts.
"Peter Norton & John Socha", from 1986, and it is to ms-dos.
regards and good luck.