diff options
author | Ancyker <[email protected]> | 2023-08-25 03:57:15 -0400 |
---|---|---|
committer | Ancyker <[email protected]> | 2023-08-25 03:57:15 -0400 |
commit | 03bef214ece268c4a0fbbd135ee3f4aa8d8e180f (patch) | |
tree | aeee01796e455cd6dd6f02130a9f43c4be50cd11 | |
parent | d99e2d4040aa82795057a8041538a2b116a04720 (diff) | |
download | cartreader-03bef214ece268c4a0fbbd135ee3f4aa8d8e180f.tar.gz cartreader-03bef214ece268c4a0fbbd135ee3f4aa8d8e180f.zip |
Add some clarification to Config.h
-rw-r--r-- | Cart_Reader/Config.h | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/Cart_Reader/Config.h b/Cart_Reader/Config.h index 230c73c..835b753 100644 --- a/Cart_Reader/Config.h +++ b/Cart_Reader/Config.h @@ -49,7 +49,8 @@ /****/ /* [ Clock Generator ---------------------------------------------- ] -* Enable this if you have the clock generator module. +* Enable this if you have the clock generator module. This will +* automatically be enabled if you selected HW2 or newer above. */ //#define clockgen_installed @@ -57,12 +58,11 @@ /****/ /* [ Real Time Clock ---------------------------------------------- ] -* Enable this if you have the RTC module. +* Enable this if you have the RTC module. You can configure the +* type later in this file. */ //#define RTC_installed -#define DS3231 -//#define DS1307 /****/ @@ -296,6 +296,16 @@ /****/ +/* [ RTC: IC Type ------------------------------------------------- ] +* When the RTC module is installed, choose the type here. This +* setting is ignored if the RTC option is not enabled. +*/ + +#define DS3231 +//#define DS1307 + +/****/ + /* [ SNES Core/CLOCKGEN: Read Clock Generator Calibration Data ---- ] * Toggle to use calibration data from snes_clk.txt */ |