Skip to content

Commit f6aa56d

Browse files
committed
Fix documentation for N64 constants, update all files with this documentation
1 parent 0883200 commit f6aa56d

File tree

10 files changed

+944
-314
lines changed

10 files changed

+944
-314
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
### Added
66
- Memory zeroing functionality (see osZeroMemory())
7+
- Interrupt handling for RCP DP interrupts
8+
- PI functionality
9+
10+
### Changed
11+
- Improve documentation on N64 constants and prepend N64_
712

813
### Removed
914
- Documentation build from `scons` (users may do it manually now by running `doxygen`)

Doxyfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -2049,15 +2049,15 @@ ENABLE_PREPROCESSING = YES
20492049
# The default value is: NO.
20502050
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
20512051

2052-
MACRO_EXPANSION = NO
2052+
MACRO_EXPANSION = YES
20532053

20542054
# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
20552055
# the macro expansion is limited to the macros specified with the PREDEFINED and
20562056
# EXPAND_AS_DEFINED tags.
20572057
# The default value is: NO.
20582058
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
20592059

2060-
EXPAND_ONLY_PREDEF = NO
2060+
EXPAND_ONLY_PREDEF = YES
20612061

20622062
# If the SEARCH_INCLUDES tag is set to YES, the include files in the
20632063
# INCLUDE_PATH will be searched if a #include is found.
@@ -2089,7 +2089,7 @@ INCLUDE_FILE_PATTERNS =
20892089
# recursively expanded use the := operator instead of the = operator.
20902090
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
20912091

2092-
PREDEFINED = __attribute__(x)
2092+
PREDEFINED = __attribute__(x)=
20932093

20942094
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
20952095
# tag can be used to specify a list of macro names that should be expanded. The

Doxyfile.priv

+4-4
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@ HIDE_IN_BODY_DOCS = NO
516516
# will be excluded. Set it to YES to include the internal documentation.
517517
# The default value is: NO.
518518

519-
INTERNAL_DOCS = YES
519+
INTERNAL_DOCS = YES
520520

521521
# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
522522
# names in lower-case letters. If set to YES, upper-case letters are also
@@ -2049,15 +2049,15 @@ ENABLE_PREPROCESSING = YES
20492049
# The default value is: NO.
20502050
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
20512051

2052-
MACRO_EXPANSION = NO
2052+
MACRO_EXPANSION = YES
20532053

20542054
# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
20552055
# the macro expansion is limited to the macros specified with the PREDEFINED and
20562056
# EXPAND_AS_DEFINED tags.
20572057
# The default value is: NO.
20582058
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
20592059

2060-
EXPAND_ONLY_PREDEF = NO
2060+
EXPAND_ONLY_PREDEF = YES
20612061

20622062
# If the SEARCH_INCLUDES tag is set to YES, the include files in the
20632063
# INCLUDE_PATH will be searched if a #include is found.
@@ -2089,7 +2089,7 @@ INCLUDE_FILE_PATTERNS =
20892089
# recursively expanded use the := operator instead of the = operator.
20902090
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
20912091

2092-
PREDEFINED = __attribute__(x)
2092+
PREDEFINED = __attribute__(x)=
20932093

20942094
# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
20952095
# tag can be used to specify a list of macro names that should be expanded. The

0 commit comments

Comments
 (0)