mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-11 08:30:55 +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;
|
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;
|
Region base;
|
||||||
/// Describes banking state in the range $0400–$7FFF.
|
/// Describes banking state in the range $0400–$07FF.
|
||||||
Region region_04_08;
|
Region region_04_08;
|
||||||
/// Describes banking state in the range $2000–$3FFF.
|
/// Describes banking state in the range $2000–$3FFF.
|
||||||
Region region_20_40;
|
Region region_20_40;
|
||||||
|
@ -22,7 +22,7 @@ template <typename Machine> class LanguageCardSwitches {
|
|||||||
public:
|
public:
|
||||||
struct State {
|
struct State {
|
||||||
/// When RAM is visible in the range $D000–$FFFF:
|
/// 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.
|
/// @c false indicates bank 1.
|
||||||
bool bank2 = true;
|
bool bank2 = true;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user