2020-10-23 01:01:12 +00:00
|
|
|
|
//
|
2020-10-23 02:33:31 +00:00
|
|
|
|
// LanguageCardSwitches.hpp
|
2020-10-23 01:01:12 +00:00
|
|
|
|
// Clock Signal
|
|
|
|
|
//
|
|
|
|
|
// Created by Thomas Harte on 22/10/2020.
|
|
|
|
|
// Copyright © 2020 Thomas Harte. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
2020-10-23 02:33:31 +00:00
|
|
|
|
#ifndef LanguageCardSwitches_h
|
|
|
|
|
#define LanguageCardSwitches_h
|
2020-10-23 01:01:12 +00:00
|
|
|
|
|
|
|
|
|
namespace Apple {
|
|
|
|
|
namespace II {
|
|
|
|
|
|
2020-10-23 22:44:47 +00:00
|
|
|
|
/*!
|
|
|
|
|
Models the language card soft switches, present on any Apple II with a language card and provided built-in from the IIe onwards.
|
|
|
|
|
|
|
|
|
|
Relevant memory accesses should be fed to this class; it'll call:
|
|
|
|
|
* machine.set_language_card_paging() if the proper mapped state changes.
|
|
|
|
|
*/
|
2020-10-23 02:33:31 +00:00
|
|
|
|
template <typename Machine> class LanguageCardSwitches {
|
2020-10-23 01:01:12 +00:00
|
|
|
|
public:
|
|
|
|
|
struct State {
|
|
|
|
|
/// Indicates which 4kb chunk of RAM should be visible at $Dxxx if RAM is visible at all.
|
|
|
|
|
bool bank1 = false;
|
|
|
|
|
|
|
|
|
|
/// @c true indicates that RAM should be readable in the range $D000–$FFFF;
|
|
|
|
|
/// @c indicates ROM should be readable.
|
|
|
|
|
bool read = false;
|
|
|
|
|
|
|
|
|
|
/// @c true indicates that ROM is selected for 'writing' in the range $D000–$FFFF (i.e. writes are a no-op);
|
|
|
|
|
/// @c false indicates that RAM is selected for writing.
|
|
|
|
|
bool write = false;
|
|
|
|
|
|
2020-10-23 22:44:47 +00:00
|
|
|
|
bool operator != (const State &rhs) const {
|
|
|
|
|
return
|
|
|
|
|
bank1 != rhs.bank1 ||
|
|
|
|
|
read != rhs.read ||
|
|
|
|
|
write != rhs.write;
|
|
|
|
|
}
|
2020-10-23 01:01:12 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-10-23 02:33:31 +00:00
|
|
|
|
LanguageCardSwitches(Machine &machine) : machine_(machine) {}
|
2020-10-23 01:01:12 +00:00
|
|
|
|
|
2020-10-23 02:33:31 +00:00
|
|
|
|
/// Used by an owner to forward any access to $c08x.
|
2020-10-23 01:01:12 +00:00
|
|
|
|
void access(uint16_t address, bool is_read) {
|
2020-10-23 22:44:47 +00:00
|
|
|
|
const auto previous_state = state_;
|
|
|
|
|
|
2020-10-23 01:01:12 +00:00
|
|
|
|
// Quotes below taken from Understanding the Apple II, p. 5-28 and 5-29.
|
|
|
|
|
|
|
|
|
|
// "A3 controls the 4K bank selection"
|
|
|
|
|
state_.bank1 = address & 8;
|
|
|
|
|
|
|
|
|
|
// "Access to $C080, $C083, $C084, $0087, $C088, $C08B, $C08C, or $C08F sets the READ ENABLE flip-flop"
|
|
|
|
|
// (other accesses reset it)
|
|
|
|
|
state_.read = !(((address&2) >> 1) ^ (address&1));
|
|
|
|
|
|
|
|
|
|
// "The WRITE ENABLE' flip-flop is reset by an odd read access to the $C08X range when the PRE-WRITE flip-flop is set."
|
2020-10-23 22:44:47 +00:00
|
|
|
|
if(pre_write_ && is_read && (address&1)) state_.write = false;
|
2020-10-23 01:01:12 +00:00
|
|
|
|
|
|
|
|
|
// "[The WRITE ENABLE' flip-flop] is set by an even access in the $C08X range."
|
|
|
|
|
if(!(address&1)) state_.write = true;
|
|
|
|
|
|
|
|
|
|
// ("Any other type of access causes the WRITE ENABLE' flip-flop to hold its current state.")
|
|
|
|
|
|
|
|
|
|
// "The PRE-WRITE flip-flop is set by an odd read access in the $C08X range. It is reset by an even access or a write access."
|
2020-10-23 22:44:47 +00:00
|
|
|
|
pre_write_ = is_read ? (address&1) : false;
|
2020-10-23 01:01:12 +00:00
|
|
|
|
|
|
|
|
|
// Apply whatever the net effect of all that is to the memory map.
|
2020-10-23 22:44:47 +00:00
|
|
|
|
if(previous_state != state_) {
|
|
|
|
|
machine_.set_language_card_paging();
|
|
|
|
|
}
|
2020-10-23 01:01:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Provides read-only access to the current language card switch state.
|
|
|
|
|
const State &state() {
|
|
|
|
|
return state_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Machine &machine_;
|
|
|
|
|
State state_;
|
2020-10-23 22:44:47 +00:00
|
|
|
|
|
|
|
|
|
// This is an additional flip flop contained on the language card, but
|
|
|
|
|
// it is one step removed from current banking state, so I've excluded it
|
|
|
|
|
// from the State struct.
|
|
|
|
|
bool pre_write_ = false;
|
2020-10-23 01:01:12 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* LanguageCard_h */
|