Browse Source

Fix a few more typos

master
Taylor Bockman 6 years ago committed by GitHub
parent
commit
c69cb29edd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      README.md

14
README.md

@ -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

Loading…
Cancel
Save