Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
I've been learning Assembly :D
#1
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
Reply
#2
*bows*

Computer Master.
Reply
#3
Lol, what you posted isn't even actual assembly code, it's just a header.
Reply
#4
(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.
Reply
#5
y u so defensive
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)