| View previous topic :: View next topic |
| Author |
Message |
majkinetor
Joined: 24 May 2006 Posts: 3615 Location: Belgrade
|
Posted: Tue Feb 26, 2008 1:35 pm Post subject: Iczelion's Win32 Assembly Tutorials |
|
|
| Quote: | | Here you'll find information on how to program Windows using Assembly Language. I love assembly language and have programmed in asm since DOS days. When Windows "killed" DOS, I thought assembly language died with it. I could not be further from the truth! Assembly programming on Win32 platform is quite possible and easy. Not very different from programming Windows in C |
http://win32assembly.online.fr/tutorials.html _________________
 |
|
| Back to top |
|
 |
N. Bourbaki Guest
|
Posted: Thu Feb 28, 2008 12:22 pm Post subject: |
|
|
| majkinetor wrote: | | http://win32assembly.online.fr/tutorials.html |
Excellent tutorials. As a matter of fact, I already knew it, however I'd just like to say hello to you. I heard from a friend of mine that you are highly professional at programming. |
|
| Back to top |
|
 |
majkinetor
Joined: 24 May 2006 Posts: 3615 Location: Belgrade
|
Posted: Thu Feb 28, 2008 1:13 pm Post subject: |
|
|
Hello N. Bourbaki.
| Quote: | | I heard from a friend of mine that you are highly professional at programming. |
I hope I am. Unfortunately, my ahk projects are not available any more on this place, but they will hopefuly be on my homepage some time in next few months.
Have fun.
PS: For people that would like to experiment with tutorials on the mentioned page, this is the batch script that will compile and run MASM source code. You only need to install MASM32 into root of the c:\ drive and to connect the script with your editor. Bin directory must be on the PATH.
MASMRUN.bat
| Code: | SET NAME=%~n1
ml /c /coff /Cp %NAME%.asm
link /SUBSYSTEM:WINDOWS /LIBPATH:c:\masm32\lib %NAME%.obj
erase %NAME%.obj
if Exist %NAME%.exe start %NAME%.exe |
Example with tutorial number 2:
| Code: | | MASMRUN.bat MSGBOX.asm |
_________________
 |
|
| Back to top |
|
 |
|