.386
    .model flat,stdcall
    option casemap:none
    include kernel32.inc
    includelib kernel32.lib
    includelib msvcrt.lib
    printf PROTO C: ptr sbyte,:vararg
    .data
    fmt BYTE ‘%s’,13,10,0
    s BYTE ‘WIN32汇编,你好!’,0
    .code
    start:
    invoke printf,ADDR fmt,ADDR s
    invoke ExitProcess,0
    end start