News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

dummy.asm

Started by dedndave, February 13, 2009, 11:23:55 AM

Previous topic - Next topic

dedndave

Could I get someone to assemble this program for me ?
I do not have masm installed on this machine, and I need this simple program....
ThanX - Dave


      .486
      .model flat, stdcall
      option casemap :none

      include C:\masm32\include\kernel32.inc
      includelib C:\masm32\lib\kernel32.lib

      .code

start: INVOKE  ExitProcess,
               NULL

       end     start

jj2007

Here it is. Make sure it doesn't do any damage :bg

[attachment deleted by admin]

dedndave

Thank you very much JJ
- D