2DWorlds Forums
I've been learning Assembly :D - Printable Version

+- 2DWorlds Forums (http://2dworlds.buildism.net/forum)
+-- Forum: Off Topic (http://2dworlds.buildism.net/forum/forumdisplay.php?fid=5)
+--- Forum: Programming (http://2dworlds.buildism.net/forum/forumdisplay.php?fid=30)
+--- Thread: I've been learning Assembly :D (/showthread.php?tid=8601)



I've been learning Assembly :D - Mustachio - 11-22-2011

One of the most unknown codes known to Programmer-minds.

Code:
.486  

.model flat, stdcall  

option casemap :none  

include \masm32\include\windows.inc
include \masm32\include\user32.inc
include \masm32\include\kernel32.inc

includelib \masm32\lib\user32.lib
includelib \masm32\lib\kernel32.lib

.data

HelloWorld db "Hello World!", 0
HelloTitle db "Pop up!", 0

.code

start:

invoke MessageBox, NULL, addr HelloWorld, addr HelloTitle, MB_OK
invoke ExitProcess, 0

end start



RE: I've been learning Assembly :D - Dignity - 11-22-2011

*bows*

Computer Master.


RE: I've been learning Assembly :D - noob007 - 11-22-2011

Lol, what you posted isn't even actual assembly code, it's just a header.


RE: I've been learning Assembly :D - Mustachio - 11-22-2011

(11-22-2011, 06:45 PM)noob007 Wrote: Lol, what you posted isn't even actual assembly code, it's just a header.

There's a meaning to LEARNING Mr. God who lives in his mother's basement.


RE: I've been learning Assembly :D - noob007 - 11-22-2011

y u so defensive