Programming: Windows 32 assembly language example 3 part3
Uploader Comments (youhakim)
All Comments (8)
-
You don´t have to use C-like macros like .WHILE TRUE or .IF eax == WM_CREATE - You can write it like
cp eax, WM_CREATE
jne destAdr
that is pure x86 assembler
But Thank you for teaching the world that there is not only interpreted languages like PHP, JAVA, RUBY PYTHON etc - only wasting valuable processor speed, but old good assembler is still alive.
-
I think your tutorials are GREAT man. Keep up the good work.
-
When I compile I get an error: "test05.asm(39) : error A2006: undefined symbol : lpFnWndProc"
I don't understand why it own assemble. Please help!
-
Great tutorial!
alltho i cant make it work, when i run the exe by doubleclick the window doesnt show up, the process is running in the background but no window showing up. I tryed to debug it with ollydbg and then it ran fine...
Any ideas why?
-
Plz keep making asm guides.
-
thanks for the the instruction. You are the man.
-
Ahh, I fixed my error ;)
I forgot a line of code, that I left out, that was stupid of me :)
The program executes perfectly ;)
Thanks Hakim!!
Great comments, that helps alot :)
-- I suggest anyone who has some trouble with this, to re-watch the videos along side the editor and check their code : -)
-- I got to fix alot of my own stupid errors with the cmd prompt debugger; this was good practice ;) I appreciate all the effort you put into your videos, thank you!
-
Thank you for the series on masm32 assembly! ;) Although I could not get the program to work, it will compile but the .exe does nothing; I think I have made some silly errors :)
But still this series was helpful thank you!
I will have to study harder, I think ;)
Thanks "OneCloudMind" for your comments :)
Me too I learn a lot when I make mistakes and correct them using the compiler warning and error messages, when I write many lines of code and I get no errors when I compile, I ... don't believe it! and recheck the code twice for logical errors which are worse!!!
youhakim 3 years ago