mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-23 20:29:42 +00:00
Corrects documentation errors and ambiguities.
This commit is contained in:
parent
6273ef8ba2
commit
1422d43c35
@ -39,9 +39,9 @@ template <typename Machine> class AuxiliaryMemorySwitches {
|
||||
bool write = false;
|
||||
};
|
||||
|
||||
/// Describes banking state in the ranges $0200–$3FFF, $0800–$1FFF and $4000–$BFFF.
|
||||
/// Describes banking state in the ranges $0200–$03FF, $0800–$1FFF and $4000–$BFFF.
|
||||
Region base;
|
||||
/// Describes banking state in the range $0400–$7FFF.
|
||||
/// Describes banking state in the range $0400–$07FF.
|
||||
Region region_04_08;
|
||||
/// Describes banking state in the range $2000–$3FFF.
|
||||
Region region_20_40;
|
||||
|
@ -22,7 +22,7 @@ template <typename Machine> class LanguageCardSwitches {
|
||||
public:
|
||||
struct State {
|
||||
/// When RAM is visible in the range $D000–$FFFF:
|
||||
/// @c true indicates that bank 2 should be used;
|
||||
/// @c true indicates that bank 2 should be used between $D000 and $DFFF;
|
||||
/// @c false indicates bank 1.
|
||||
bool bank2 = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user