1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-09-30 07:55:01 +00:00

Corrects documentation errors and ambiguities.

This commit is contained in:
Thomas Harte 2020-12-05 19:07:38 -05:00
parent 6273ef8ba2
commit 1422d43c35
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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;