ASM

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Vests
    FFR Player
    • Jun 2006
    • 56

    #1

    ASM

    Jesus, no one talking about one of the original languages that came around? I figured this would be talked about before compiled **** languages like Perl and C++. Lol, here you go. How about a nice little message box?

    Code:
     .386 
    .model flat,stdcall 
    option casemap:none 
    include \masm32\include\windows.inc 
    include \masm32\include\kernel32.inc 
    includelib \masm32\lib\kernel32.lib 
    include \masm32\include\user32.inc 
    includelib \masm32\lib\user32.lib 
    
    .data 
    MsgBoxCaption  db "Vests Output",0 
    MsgBoxText       db "Sup Flash Flash?",0 
    
    .code 
    start: 
    invoke MessageBox, NULL, addr MsgBoxText, addr MsgBoxCaption, MB_OK 
    invoke ExitProcess, NULL 
    end start
    In due time once all modern architecture is gone it will be called ancient. Because no matter how hard we work to perfect something, as time will progresses we shall dwell upon how imperfect it really was.

    Intelligence is only a value if you harness it.

Working...