Browse Source

Update README.md

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

7
README.md

@ -100,8 +100,9 @@ TODO
### Include Ordering
As a matter of style, prefer to put all `.inc` files together and all `.lib` files together. Sort them alphabetically,
and separate them by a single blank line.
As a matter of style, `.inc` files should be ordered system includes first and then project includes separated by a single blank line.
Sort them alphabetically, and separate them by a single blank line.
Example:
@ -110,6 +111,8 @@ include \masm32\include\kernel32.inc
include \masm32\include\user32.inc
include \masm32\include\windows.inc
include projectinclude.inc
includelib \masm32\include\kernel32.lib
includelib \masm32\include\user32.lib
```

Loading…
Cancel
Save