about summary refs log tree commit diff stats
path: root/example/samples/x86_32_simple.S
blob: f38c232f7b4c13c6b9efde91692c03c68fe49a99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
main:
    PUSH 0
    PUSH title
    PUSH msg
    PUSH 0
    CALL DWORD PTR [ MessageBoxA ]
    RET

title:
.string "Hello!"
msg:
.string "World!"