Could anybody tell me somewhere to download assembly source code?
source code for what ?
there are miles of code out there
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.
CuiCan,
Download MASM32, it's full of example code.
Oh,thank you all ! :bg
take a look above and click in link "Archived Old Forum Files", to get some examples.
regards.
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. :(
It is probably because your paranoid Party Chairman thinks you may use that knowledge against them.
Where is lesson one in the "How to write assembly code"?
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.
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
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
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
I prefer textbook for students, because authors present the material so that was understandable to other people
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.