|
|
@ -127,12 +127,14 @@ Example: |
|
|
|
option casemap:none |
|
|
|
option casemap:none |
|
|
|
include \masm32\include\windows.inc |
|
|
|
include \masm32\include\windows.inc |
|
|
|
include \masm32\include\kernel32.inc |
|
|
|
include \masm32\include\kernel32.inc |
|
|
|
|
|
|
|
|
|
|
|
includelib \masm32\lib\kernel32.lib |
|
|
|
includelib \masm32\lib\kernel32.lib |
|
|
|
|
|
|
|
|
|
|
|
.DATA |
|
|
|
.DATA |
|
|
|
.CODE |
|
|
|
.CODE |
|
|
|
start: |
|
|
|
start: |
|
|
|
invoke ExitProcess,0 |
|
|
|
invoke ExitProcess, 0 |
|
|
|
end start |
|
|
|
end start |
|
|
|
``` |
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
### Section Names |
|
|
|
### Section Names |
|
|
@ -153,9 +155,9 @@ includelib \masm32\lib\kernel32.lib |
|
|
|
|
|
|
|
|
|
|
|
.DATA |
|
|
|
.DATA |
|
|
|
.CODE |
|
|
|
.CODE |
|
|
|
start: |
|
|
|
start: |
|
|
|
invoke ExitProcess,0 |
|
|
|
invoke ExitProcess, 0 |
|
|
|
end start |
|
|
|
end start |
|
|
|
``` |
|
|
|
``` |
|
|
|
|
|
|
|
|
|
|
|
### Variable Names |
|
|
|
### Variable Names |
|
|
|