AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Iczelion's Win32 Assembly Tutorials

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Utilities & Resources
View previous topic :: View next topic  
Author Message
majkinetor



Joined: 24 May 2006
Posts: 3615
Location: Belgrade

PostPosted: Tue Feb 26, 2008 1:35 pm    Post subject: Iczelion's Win32 Assembly Tutorials Reply with quote

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
View user's profile Send private message MSN Messenger
N. Bourbaki
Guest





PostPosted: Thu Feb 28, 2008 12:22 pm    Post subject: Reply with quote

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

PostPosted: Thu Feb 28, 2008 1:13 pm    Post subject: Reply with quote

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
View user's profile Send private message MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Utilities & Resources All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group