diff --git a/README.md b/README.md index 12e3175..4d048d6 100644 --- a/README.md +++ b/README.md @@ -127,12 +127,14 @@ Example: option casemap:none include \masm32\include\windows.inc include \masm32\include\kernel32.inc + includelib \masm32\lib\kernel32.lib + .DATA .CODE -start: - invoke ExitProcess,0 -end start + start: + invoke ExitProcess, 0 + end start ``` ### Section Names @@ -153,9 +155,9 @@ includelib \masm32\lib\kernel32.lib .DATA .CODE -start: - invoke ExitProcess,0 -end start + start: + invoke ExitProcess, 0 + end start ``` ### Variable Names