2018-04-14 23:46:15 +00:00
|
|
|
//
|
|
|
|
// AppleII.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 14/04/2018.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
2018-04-14 23:46:15 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#include "AppleII.hpp"
|
|
|
|
|
2019-05-03 22:14:10 +00:00
|
|
|
#include "../../../Activity/Source.hpp"
|
2020-04-02 03:19:34 +00:00
|
|
|
#include "../../MachineTypes.hpp"
|
2019-05-03 22:14:10 +00:00
|
|
|
#include "../../Utility/MemoryFuzzer.hpp"
|
|
|
|
#include "../../Utility/StringSerialiser.hpp"
|
2018-04-15 01:41:26 +00:00
|
|
|
|
2019-05-03 22:14:10 +00:00
|
|
|
#include "../../../Processors/6502/6502.hpp"
|
|
|
|
#include "../../../Components/AudioToggle/AudioToggle.hpp"
|
2018-04-18 02:28:13 +00:00
|
|
|
|
2019-05-03 22:14:10 +00:00
|
|
|
#include "../../../Outputs/Speaker/Implementation/LowpassSpeaker.hpp"
|
|
|
|
#include "../../../Outputs/Log.hpp"
|
2018-04-14 23:46:15 +00:00
|
|
|
|
2020-10-23 02:33:31 +00:00
|
|
|
#include "AuxiliaryMemorySwitches.hpp"
|
2018-04-24 04:14:45 +00:00
|
|
|
#include "Card.hpp"
|
2018-04-24 05:11:31 +00:00
|
|
|
#include "DiskIICard.hpp"
|
2021-02-17 00:17:32 +00:00
|
|
|
#include "Joystick.hpp"
|
2020-10-23 02:33:31 +00:00
|
|
|
#include "LanguageCardSwitches.hpp"
|
2018-04-14 23:46:15 +00:00
|
|
|
#include "Video.hpp"
|
|
|
|
|
2019-05-03 22:14:10 +00:00
|
|
|
#include "../../../Analyser/Static/AppleII/Target.hpp"
|
|
|
|
#include "../../../ClockReceiver/ForceInline.hpp"
|
|
|
|
#include "../../../Configurable/StandardOptions.hpp"
|
2018-06-10 21:58:16 +00:00
|
|
|
|
2018-05-24 02:28:00 +00:00
|
|
|
#include <algorithm>
|
2018-05-11 02:17:13 +00:00
|
|
|
#include <array>
|
2018-04-14 23:46:15 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2019-05-03 22:14:10 +00:00
|
|
|
namespace Apple {
|
|
|
|
namespace II {
|
2019-02-13 00:52:32 +00:00
|
|
|
|
2018-08-11 14:26:30 +00:00
|
|
|
#define is_iie() ((model == Analyser::Static::AppleII::Target::Model::IIe) || (model == Analyser::Static::AppleII::Target::Model::EnhancedIIe))
|
|
|
|
|
|
|
|
template <Analyser::Static::AppleII::Target::Model model> class ConcreteMachine:
|
2020-10-22 01:16:42 +00:00
|
|
|
public Apple::II::Machine,
|
2020-04-02 03:19:34 +00:00
|
|
|
public MachineTypes::TimedMachine,
|
|
|
|
public MachineTypes::ScanProducer,
|
|
|
|
public MachineTypes::AudioProducer,
|
|
|
|
public MachineTypes::MediaTarget,
|
|
|
|
public MachineTypes::MappedKeyboardMachine,
|
|
|
|
public MachineTypes::JoystickMachine,
|
2018-04-15 01:41:26 +00:00
|
|
|
public CPU::MOS6502::BusHandler,
|
2019-02-13 00:52:32 +00:00
|
|
|
public Configurable::Device,
|
2018-05-23 00:34:59 +00:00
|
|
|
public Activity::Source,
|
2019-05-03 22:14:10 +00:00
|
|
|
public Apple::II::Card::Delegate {
|
2018-04-15 23:35:08 +00:00
|
|
|
private:
|
2019-05-03 22:14:10 +00:00
|
|
|
struct VideoBusHandler : public Apple::II::Video::BusHandler {
|
2018-04-15 23:35:08 +00:00
|
|
|
public:
|
2018-07-30 03:02:27 +00:00
|
|
|
VideoBusHandler(uint8_t *ram, uint8_t *aux_ram) : ram_(ram), aux_ram_(aux_ram) {}
|
2018-04-15 23:35:08 +00:00
|
|
|
|
2018-08-13 00:36:08 +00:00
|
|
|
void perform_read(uint16_t address, size_t count, uint8_t *base_target, uint8_t *auxiliary_target) {
|
|
|
|
memcpy(base_target, &ram_[address], count);
|
|
|
|
memcpy(auxiliary_target, &aux_ram_[address], count);
|
2018-07-24 02:14:41 +00:00
|
|
|
}
|
2018-04-15 23:35:08 +00:00
|
|
|
|
|
|
|
private:
|
2018-07-30 03:02:27 +00:00
|
|
|
uint8_t *ram_, *aux_ram_;
|
2018-04-15 23:35:08 +00:00
|
|
|
};
|
|
|
|
|
2021-04-20 01:49:06 +00:00
|
|
|
using Processor = CPU::MOS6502::Processor<
|
|
|
|
(model == Analyser::Static::AppleII::Target::Model::EnhancedIIe) ? CPU::MOS6502::Personality::PSynertek65C02 : CPU::MOS6502::Personality::P6502,
|
|
|
|
ConcreteMachine,
|
|
|
|
false>;
|
|
|
|
Processor m6502_;
|
2018-04-15 23:35:08 +00:00
|
|
|
VideoBusHandler video_bus_handler_;
|
2019-05-03 22:14:10 +00:00
|
|
|
Apple::II::Video::Video<VideoBusHandler, is_iie()> video_;
|
2018-04-15 23:35:08 +00:00
|
|
|
int cycles_into_current_line_ = 0;
|
|
|
|
Cycles cycles_since_video_update_;
|
|
|
|
|
|
|
|
void update_video() {
|
2019-07-29 01:49:54 +00:00
|
|
|
video_.run_for(cycles_since_video_update_.flush<Cycles>());
|
2018-04-15 23:35:08 +00:00
|
|
|
}
|
2019-12-22 05:22:17 +00:00
|
|
|
static constexpr int audio_divider = 8;
|
2018-04-18 02:28:13 +00:00
|
|
|
void update_audio() {
|
2018-04-21 21:56:50 +00:00
|
|
|
speaker_.run_for(audio_queue_, cycles_since_audio_update_.divide(Cycles(audio_divider)));
|
2018-04-18 02:28:13 +00:00
|
|
|
}
|
2018-05-23 01:49:34 +00:00
|
|
|
void update_just_in_time_cards() {
|
2019-09-28 22:34:04 +00:00
|
|
|
if(cycles_since_card_update_ > Cycles(0)) {
|
|
|
|
for(const auto &card : just_in_time_cards_) {
|
|
|
|
card->run_for(cycles_since_card_update_, stretched_cycles_since_card_update_);
|
|
|
|
}
|
2018-04-24 04:14:45 +00:00
|
|
|
}
|
|
|
|
cycles_since_card_update_ = 0;
|
|
|
|
stretched_cycles_since_card_update_ = 0;
|
|
|
|
}
|
2018-04-15 23:35:08 +00:00
|
|
|
|
2018-05-06 20:17:11 +00:00
|
|
|
uint8_t ram_[65536], aux_ram_[65536];
|
2018-07-11 00:00:46 +00:00
|
|
|
std::vector<uint8_t> rom_;
|
2018-08-31 00:18:36 +00:00
|
|
|
|
2018-04-18 02:28:13 +00:00
|
|
|
Concurrency::DeferringAsyncTaskQueue audio_queue_;
|
|
|
|
Audio::Toggle audio_toggle_;
|
|
|
|
Outputs::Speaker::LowpassSpeaker<Audio::Toggle> speaker_;
|
|
|
|
Cycles cycles_since_audio_update_;
|
|
|
|
|
2018-05-23 00:34:59 +00:00
|
|
|
// MARK: - Cards
|
2019-05-03 22:14:10 +00:00
|
|
|
std::array<std::unique_ptr<Apple::II::Card>, 7> cards_;
|
2018-04-24 04:14:45 +00:00
|
|
|
Cycles cycles_since_card_update_;
|
2019-05-03 22:14:10 +00:00
|
|
|
std::vector<Apple::II::Card *> every_cycle_cards_;
|
|
|
|
std::vector<Apple::II::Card *> just_in_time_cards_;
|
2018-05-23 00:34:59 +00:00
|
|
|
|
2018-04-24 04:14:45 +00:00
|
|
|
int stretched_cycles_since_card_update_ = 0;
|
|
|
|
|
2019-05-03 22:14:10 +00:00
|
|
|
void install_card(std::size_t slot, Apple::II::Card *card) {
|
2018-05-23 00:34:59 +00:00
|
|
|
assert(slot >= 1 && slot < 8);
|
|
|
|
cards_[slot - 1].reset(card);
|
|
|
|
card->set_delegate(this);
|
|
|
|
pick_card_messaging_group(card);
|
|
|
|
}
|
|
|
|
|
2019-09-28 22:34:04 +00:00
|
|
|
bool is_every_cycle_card(const Apple::II::Card *card) {
|
2018-05-23 00:34:59 +00:00
|
|
|
return !card->get_select_constraints();
|
|
|
|
}
|
|
|
|
|
2019-09-28 22:34:04 +00:00
|
|
|
bool card_lists_are_dirty_ = true;
|
|
|
|
bool card_became_just_in_time_ = false;
|
2019-05-03 22:14:10 +00:00
|
|
|
void pick_card_messaging_group(Apple::II::Card *card) {
|
2019-09-28 22:34:04 +00:00
|
|
|
// Simplify to a card being either just-in-time or realtime.
|
|
|
|
// Don't worry about exactly what it's watching,
|
2018-05-23 00:34:59 +00:00
|
|
|
const bool is_every_cycle = is_every_cycle_card(card);
|
2019-05-03 22:14:10 +00:00
|
|
|
std::vector<Apple::II::Card *> &intended = is_every_cycle ? every_cycle_cards_ : just_in_time_cards_;
|
2018-05-23 00:34:59 +00:00
|
|
|
|
2019-09-28 22:34:04 +00:00
|
|
|
// If the card is already in the proper group, stop.
|
2018-05-23 00:34:59 +00:00
|
|
|
if(std::find(intended.begin(), intended.end(), card) != intended.end()) return;
|
2019-09-28 22:34:04 +00:00
|
|
|
|
|
|
|
// Otherwise, mark the sets as dirty. It isn't safe to transition the card here,
|
|
|
|
// as the main loop may be part way through iterating the two lists.
|
|
|
|
card_lists_are_dirty_ = true;
|
|
|
|
card_became_just_in_time_ |= !is_every_cycle;
|
2018-05-23 00:34:59 +00:00
|
|
|
}
|
|
|
|
|
2020-01-24 03:57:51 +00:00
|
|
|
void card_did_change_select_constraints(Apple::II::Card *card) final {
|
2018-05-23 00:34:59 +00:00
|
|
|
pick_card_messaging_group(card);
|
|
|
|
}
|
|
|
|
|
2019-05-03 22:14:10 +00:00
|
|
|
Apple::II::DiskIICard *diskii_card() {
|
|
|
|
return dynamic_cast<Apple::II::DiskIICard *>(cards_[5].get());
|
2018-06-09 21:29:14 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 17:02:49 +00:00
|
|
|
// MARK: - Memory Map.
|
|
|
|
|
|
|
|
/*
|
|
|
|
The Apple II's paging mechanisms are byzantine to say the least. Painful is
|
|
|
|
another appropriate adjective.
|
|
|
|
|
|
|
|
On a II and II+ there are five distinct zones of memory:
|
|
|
|
|
|
|
|
0000 to c000 : the main block of RAM
|
|
|
|
c000 to d000 : the IO area, including card ROMs
|
|
|
|
d000 to e000 : the low ROM area, which can alternatively contain either one of two 4kb blocks of RAM with a language card
|
|
|
|
e000 onward : the rest of ROM, also potentially replaced with RAM by a language card
|
|
|
|
|
|
|
|
On a IIe with auxiliary memory the following orthogonal changes also need to be factored in:
|
|
|
|
|
2018-11-24 03:32:32 +00:00
|
|
|
0000 to 0200 : can be paged independently of the rest of RAM, other than part of the language card area which pages with it
|
2018-07-28 17:02:49 +00:00
|
|
|
0400 to 0800 : the text screen, can be configured to write to auxiliary RAM
|
|
|
|
2000 to 4000 : the graphics screen, which can be configured to write to auxiliary RAM
|
|
|
|
c100 to d000 : can be used to page an additional 3.75kb of ROM, replacing the IO area
|
|
|
|
c300 to c400 : can contain the same 256-byte segment of the ROM as if the whole IO area were switched, but while leaving cards visible in the rest
|
2018-08-04 21:57:02 +00:00
|
|
|
c800 to d000 : can contain ROM separately from the region below c800
|
2018-07-28 17:02:49 +00:00
|
|
|
|
|
|
|
If dealt with as individual blocks in the inner loop, that would therefore imply mapping
|
2018-08-04 21:57:02 +00:00
|
|
|
an address to one of 13 potential pageable zones. So I've gone reductive and surrendered
|
2018-07-28 17:02:49 +00:00
|
|
|
to paging every 6502 page of memory independently. It makes the paging events more expensive,
|
2018-08-04 21:57:02 +00:00
|
|
|
but hopefully more clear.
|
2018-07-28 17:02:49 +00:00
|
|
|
*/
|
2020-10-22 01:16:42 +00:00
|
|
|
const uint8_t *read_pages_[256]; // each is a pointer to the 256-block of memory the CPU should read when accessing that page of memory
|
2018-07-28 17:02:49 +00:00
|
|
|
uint8_t *write_pages_[256]; // as per read_pages_, but this is where the CPU should write. If a pointer is nullptr, don't write.
|
2018-07-31 02:23:48 +00:00
|
|
|
void page(int start, int end, uint8_t *read, uint8_t *write) {
|
|
|
|
for(int position = start; position < end; ++position) {
|
|
|
|
read_pages_[position] = read;
|
|
|
|
if(read) read += 256;
|
|
|
|
|
|
|
|
write_pages_[position] = write;
|
|
|
|
if(write) write += 256;
|
|
|
|
}
|
|
|
|
}
|
2018-05-06 00:24:03 +00:00
|
|
|
|
2020-10-23 02:33:31 +00:00
|
|
|
// MARK: The language card.
|
|
|
|
LanguageCardSwitches<ConcreteMachine> language_card_;
|
|
|
|
AuxiliaryMemorySwitches<ConcreteMachine> auxiliary_switches_;
|
|
|
|
friend LanguageCardSwitches<ConcreteMachine>;
|
|
|
|
friend AuxiliaryMemorySwitches<ConcreteMachine>;
|
|
|
|
|
2018-05-06 20:17:11 +00:00
|
|
|
void set_language_card_paging() {
|
2020-10-23 02:33:31 +00:00
|
|
|
const auto language_state = language_card_.state();
|
|
|
|
const auto zero_state = auxiliary_switches_.zero_state();
|
|
|
|
|
|
|
|
uint8_t *const ram = zero_state ? aux_ram_ : ram_;
|
2018-08-11 14:26:30 +00:00
|
|
|
uint8_t *const rom = is_iie() ? &rom_[3840] : rom_.data();
|
2018-07-26 02:10:21 +00:00
|
|
|
|
2020-12-01 03:35:51 +00:00
|
|
|
// Which way the region here is mapped to be banks 1 and 2 is
|
|
|
|
// arbitrary.
|
2018-07-31 02:23:48 +00:00
|
|
|
page(0xd0, 0xe0,
|
2020-12-01 03:35:51 +00:00
|
|
|
language_state.read ? &ram[language_state.bank2 ? 0xd000 : 0xc000] : rom,
|
|
|
|
language_state.write ? nullptr : &ram[language_state.bank2 ? 0xd000 : 0xc000]);
|
2018-07-31 02:23:48 +00:00
|
|
|
|
|
|
|
page(0xe0, 0x100,
|
2020-10-23 02:33:31 +00:00
|
|
|
language_state.read ? &ram[0xe000] : &rom[0x1000],
|
|
|
|
language_state.write ? nullptr : &ram[0xe000]);
|
2018-05-06 20:17:11 +00:00
|
|
|
}
|
|
|
|
|
2020-10-23 02:33:31 +00:00
|
|
|
// MARK: Auxiliary memory and the other IIe improvements.
|
2018-07-28 17:31:25 +00:00
|
|
|
void set_card_paging() {
|
2020-10-23 02:33:31 +00:00
|
|
|
const auto state = auxiliary_switches_.card_state();
|
2018-07-30 23:54:25 +00:00
|
|
|
|
2020-10-23 02:33:31 +00:00
|
|
|
page(0xc1, 0xc4, state.region_C1_C3 ? &rom_[0xc100 - 0xc100] : nullptr, nullptr);
|
|
|
|
read_pages_[0xc3] = state.region_C3 ? &rom_[0xc300 - 0xc100] : nullptr;
|
|
|
|
page(0xc4, 0xc8, state.region_C4_C8 ? &rom_[0xc400 - 0xc100] : nullptr, nullptr);
|
|
|
|
page(0xc8, 0xd0, state.region_C8_D0 ? &rom_[0xc800 - 0xc100] : nullptr, nullptr);
|
2018-07-28 17:31:25 +00:00
|
|
|
}
|
2018-07-30 23:54:25 +00:00
|
|
|
void set_zero_page_paging() {
|
2020-10-23 02:33:31 +00:00
|
|
|
if(auxiliary_switches_.zero_state()) {
|
2020-10-22 01:16:42 +00:00
|
|
|
write_pages_[0] = aux_ram_;
|
2018-07-30 23:54:25 +00:00
|
|
|
} else {
|
2020-10-22 01:16:42 +00:00
|
|
|
write_pages_[0] = ram_;
|
2018-07-30 23:54:25 +00:00
|
|
|
}
|
2020-10-22 01:16:42 +00:00
|
|
|
write_pages_[1] = write_pages_[0] + 256;
|
|
|
|
read_pages_[0] = write_pages_[0];
|
|
|
|
read_pages_[1] = write_pages_[1];
|
2018-07-30 23:54:25 +00:00
|
|
|
|
2020-10-23 02:33:31 +00:00
|
|
|
// Zero page banking also affects interpretation of the language card's switches.
|
|
|
|
set_language_card_paging();
|
|
|
|
}
|
2018-07-29 14:41:12 +00:00
|
|
|
void set_main_paging() {
|
2020-10-23 02:33:31 +00:00
|
|
|
const auto state = auxiliary_switches_.main_state();
|
|
|
|
|
|
|
|
page(0x02, 0x04,
|
|
|
|
state.base.read ? &aux_ram_[0x0200] : &ram_[0x0200],
|
|
|
|
state.base.write ? &aux_ram_[0x0200] : &ram_[0x0200]);
|
|
|
|
page(0x08, 0x20,
|
|
|
|
state.base.read ? &aux_ram_[0x0800] : &ram_[0x0800],
|
|
|
|
state.base.write ? &aux_ram_[0x0800] : &ram_[0x0800]);
|
|
|
|
page(0x40, 0xc0,
|
|
|
|
state.base.read ? &aux_ram_[0x4000] : &ram_[0x4000],
|
|
|
|
state.base.write ? &aux_ram_[0x4000] : &ram_[0x4000]);
|
|
|
|
|
|
|
|
page(0x04, 0x08,
|
|
|
|
state.region_04_08.read ? &aux_ram_[0x0400] : &ram_[0x0400],
|
|
|
|
state.region_04_08.write ? &aux_ram_[0x0400] : &ram_[0x0400]);
|
|
|
|
|
|
|
|
page(0x20, 0x40,
|
|
|
|
state.region_20_40.read ? &aux_ram_[0x2000] : &ram_[0x2000],
|
|
|
|
state.region_20_40.write ? &aux_ram_[0x2000] : &ram_[0x2000]);
|
2018-07-29 14:41:12 +00:00
|
|
|
}
|
2018-07-26 01:43:12 +00:00
|
|
|
|
2021-04-20 01:49:06 +00:00
|
|
|
// MARK: - Keyboard and typing.
|
2018-05-13 15:30:04 +00:00
|
|
|
|
2021-04-20 01:49:06 +00:00
|
|
|
struct Keyboard: public Inputs::Keyboard {
|
|
|
|
Keyboard(Processor *m6502) : m6502_(m6502) {}
|
|
|
|
|
|
|
|
void reset_all_keys() final {
|
|
|
|
open_apple_is_pressed = closed_apple_is_pressed = key_is_down = false;
|
|
|
|
}
|
2018-06-12 02:16:32 +00:00
|
|
|
|
2021-04-20 01:49:06 +00:00
|
|
|
bool set_key_pressed(Key key, char value, bool is_pressed) final {
|
|
|
|
// If no ASCII value is supplied, look for a few special cases.
|
|
|
|
switch(key) {
|
|
|
|
case Key::Left: value = 0x08; break;
|
|
|
|
case Key::Right: value = 0x15; break;
|
|
|
|
case Key::Down: value = 0x0a; break;
|
|
|
|
case Key::Up: value = 0x0b; break;
|
|
|
|
case Key::Backspace: value = 0x7f; break;
|
|
|
|
case Key::Enter: value = 0x0d; break;
|
|
|
|
case Key::Tab: value = '\t'; break;
|
|
|
|
case Key::Escape: value = 0x1b; break;
|
|
|
|
|
|
|
|
case Key::LeftOption:
|
|
|
|
case Key::RightMeta:
|
|
|
|
open_apple_is_pressed = is_pressed;
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case Key::RightOption:
|
|
|
|
case Key::LeftMeta:
|
|
|
|
closed_apple_is_pressed = is_pressed;
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case Key::F1: case Key::F2: case Key::F3: case Key::F4:
|
|
|
|
case Key::F5: case Key::F6: case Key::F7: case Key::F8:
|
|
|
|
case Key::F9: case Key::F10: case Key::F11: case Key::F12:
|
|
|
|
case Key::PrintScreen:
|
|
|
|
case Key::ScrollLock:
|
|
|
|
case Key::Pause:
|
|
|
|
case Key::Insert:
|
|
|
|
case Key::Home:
|
|
|
|
case Key::PageUp:
|
|
|
|
case Key::PageDown:
|
|
|
|
case Key::End:
|
|
|
|
// Accept a bunch non-symbolic other keys, as
|
|
|
|
// reset, in the hope that the user can find
|
|
|
|
// at least one usable key.
|
|
|
|
m6502_->set_reset_line(is_pressed);
|
|
|
|
return true;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if(!value) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prior to the IIe, the keyboard could produce uppercase only.
|
|
|
|
if(!is_iie()) value = char(toupper(value));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(is_pressed) {
|
|
|
|
keyboard_input = uint8_t(value | 0x80);
|
|
|
|
key_is_down = true;
|
|
|
|
} else {
|
|
|
|
if((keyboard_input & 0x7f) == value) {
|
|
|
|
key_is_down = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t get_keyboard_input() {
|
|
|
|
if(string_serialiser) {
|
|
|
|
return string_serialiser->head() | 0x80;
|
|
|
|
} else {
|
|
|
|
return keyboard_input;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The IIe has three keys that are wired directly to the same input as the joystick buttons.
|
|
|
|
bool open_apple_is_pressed = false;
|
|
|
|
bool closed_apple_is_pressed = false;
|
|
|
|
uint8_t keyboard_input = 0x00;
|
|
|
|
bool key_is_down = false;
|
|
|
|
std::unique_ptr<Utility::StringSerialiser> string_serialiser;
|
|
|
|
|
|
|
|
private:
|
|
|
|
Processor *const m6502_;
|
|
|
|
};
|
|
|
|
Keyboard keyboard_;
|
|
|
|
|
|
|
|
// MARK: - Joysticks.
|
|
|
|
JoystickPair joysticks_;
|
2018-08-04 23:17:04 +00:00
|
|
|
|
2018-04-15 23:35:08 +00:00
|
|
|
public:
|
2018-07-11 00:00:46 +00:00
|
|
|
ConcreteMachine(const Analyser::Static::AppleII::Target &target, const ROMMachine::ROMFetcher &rom_fetcher):
|
2018-08-14 02:17:22 +00:00
|
|
|
m6502_(*this),
|
2018-11-24 03:32:32 +00:00
|
|
|
video_bus_handler_(ram_, aux_ram_),
|
|
|
|
video_(video_bus_handler_),
|
|
|
|
audio_toggle_(audio_queue_),
|
2020-10-23 01:01:12 +00:00
|
|
|
speaker_(audio_toggle_),
|
2020-10-23 02:33:31 +00:00
|
|
|
language_card_(*this),
|
2021-04-20 01:49:06 +00:00
|
|
|
auxiliary_switches_(*this),
|
|
|
|
keyboard_(&m6502_) {
|
2018-11-24 03:32:32 +00:00
|
|
|
// The system's master clock rate.
|
2019-12-22 05:22:17 +00:00
|
|
|
constexpr float master_clock = 14318180.0;
|
2018-11-24 03:32:32 +00:00
|
|
|
|
|
|
|
// This is where things get slightly convoluted: establish the machine as having a clock rate
|
|
|
|
// equal to the number of cycles of work the 6502 will actually achieve. Which is less than
|
|
|
|
// the master clock rate divided by 14 because every 65th cycle is extended by one seventh.
|
2018-04-19 01:52:22 +00:00
|
|
|
set_clock_rate((master_clock / 14.0) * 65.0 / (65.0 + 1.0 / 7.0));
|
|
|
|
|
|
|
|
// The speaker, however, should think it is clocked at half the master clock, per a general
|
|
|
|
// decision to sample it at seven times the CPU clock (plus stretches).
|
2020-05-10 03:00:39 +00:00
|
|
|
speaker_.set_input_rate(float(master_clock / (2.0 * float(audio_divider))));
|
2018-04-19 01:52:22 +00:00
|
|
|
|
2018-05-16 00:43:13 +00:00
|
|
|
// Apply a 6Khz low-pass filter. This was picked by ear and by an attempt to understand the
|
|
|
|
// Apple II schematic but, well, I don't claim much insight on the latter. This is definitely
|
|
|
|
// something to review in the future.
|
|
|
|
speaker_.set_high_frequency_cutoff(6000);
|
2018-05-15 01:56:14 +00:00
|
|
|
|
2018-04-19 01:52:22 +00:00
|
|
|
// Also, start with randomised memory contents.
|
2018-04-15 01:41:26 +00:00
|
|
|
Memory::Fuzz(ram_, sizeof(ram_));
|
2018-07-26 02:10:21 +00:00
|
|
|
Memory::Fuzz(aux_ram_, sizeof(aux_ram_));
|
2018-06-12 02:16:32 +00:00
|
|
|
|
2018-07-11 00:00:46 +00:00
|
|
|
// Pick the required ROMs.
|
|
|
|
using Target = Analyser::Static::AppleII::Target;
|
2019-07-23 01:14:21 +00:00
|
|
|
const std::string machine_name = "AppleII";
|
2019-07-20 20:08:40 +00:00
|
|
|
std::vector<ROMMachine::ROM> rom_descriptions;
|
2018-07-25 22:58:34 +00:00
|
|
|
size_t rom_size = 12*1024;
|
2018-07-11 00:00:46 +00:00
|
|
|
switch(target.model) {
|
|
|
|
default:
|
2020-11-07 22:45:03 +00:00
|
|
|
rom_descriptions.push_back(video_.rom_description(Video::VideoBase::CharacterROM::II));
|
2019-07-23 01:14:21 +00:00
|
|
|
rom_descriptions.emplace_back(machine_name, "the original Apple II ROM", "apple2o.rom", 12*1024, 0xba210588);
|
2018-07-11 00:00:46 +00:00
|
|
|
break;
|
|
|
|
case Target::Model::IIplus:
|
2020-11-07 22:45:03 +00:00
|
|
|
rom_descriptions.push_back(video_.rom_description(Video::VideoBase::CharacterROM::II));
|
2019-07-23 01:14:21 +00:00
|
|
|
rom_descriptions.emplace_back(machine_name, "the Apple II+ ROM", "apple2.rom", 12*1024, 0xf66f9c26);
|
2018-07-11 00:00:46 +00:00
|
|
|
break;
|
2018-07-25 22:58:34 +00:00
|
|
|
case Target::Model::IIe:
|
2018-07-26 01:43:12 +00:00
|
|
|
rom_size += 3840;
|
2020-11-07 22:45:03 +00:00
|
|
|
rom_descriptions.push_back(video_.rom_description(Video::VideoBase::CharacterROM::IIe));
|
2019-07-23 01:14:21 +00:00
|
|
|
rom_descriptions.emplace_back(machine_name, "the Apple IIe ROM", "apple2eu.rom", 32*1024, 0xe12be18d);
|
2018-07-25 22:58:34 +00:00
|
|
|
break;
|
2018-08-11 14:26:30 +00:00
|
|
|
case Target::Model::EnhancedIIe:
|
|
|
|
rom_size += 3840;
|
2020-11-07 22:45:03 +00:00
|
|
|
rom_descriptions.push_back(video_.rom_description(Video::VideoBase::CharacterROM::EnhancedIIe));
|
2019-07-23 01:14:21 +00:00
|
|
|
rom_descriptions.emplace_back(machine_name, "the Enhanced Apple IIe ROM", "apple2e.rom", 32*1024, 0x65989942);
|
2018-08-11 14:26:30 +00:00
|
|
|
break;
|
2018-07-11 00:00:46 +00:00
|
|
|
}
|
2019-07-23 01:14:21 +00:00
|
|
|
const auto roms = rom_fetcher(rom_descriptions);
|
2018-07-11 00:00:46 +00:00
|
|
|
|
2019-07-23 03:07:23 +00:00
|
|
|
// Try to install a Disk II card now, before checking the ROM list,
|
|
|
|
// to make sure that Disk II dependencies have been communicated.
|
|
|
|
if(target.disk_controller != Target::DiskController::None) {
|
|
|
|
// Apple recommended slot 6 for the (first) Disk II.
|
|
|
|
install_card(6, new Apple::II::DiskIICard(rom_fetcher, target.disk_controller == Target::DiskController::SixteenSector));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now, check and move the ROMs.
|
2018-07-11 00:00:46 +00:00
|
|
|
if(!roms[0] || !roms[1]) {
|
|
|
|
throw ROMMachine::Error::MissingROMs;
|
|
|
|
}
|
|
|
|
|
|
|
|
rom_ = std::move(*roms[1]);
|
2018-07-25 22:58:34 +00:00
|
|
|
if(rom_.size() > rom_size) {
|
2020-05-10 03:00:39 +00:00
|
|
|
rom_.erase(rom_.begin(), rom_.end() - off_t(rom_size));
|
2018-07-11 00:00:46 +00:00
|
|
|
}
|
|
|
|
|
2018-11-15 03:04:57 +00:00
|
|
|
video_.set_character_rom(*roms[0]);
|
2018-07-25 22:58:34 +00:00
|
|
|
|
2018-07-26 02:10:21 +00:00
|
|
|
// Set up the default memory blocks. On a II or II+ these values will never change.
|
|
|
|
// On a IIe they'll be affected by selection of auxiliary RAM.
|
2018-07-31 02:23:48 +00:00
|
|
|
set_main_paging();
|
|
|
|
set_zero_page_paging();
|
2018-07-28 17:31:25 +00:00
|
|
|
|
|
|
|
// Set the whole card area to initially backed by nothing.
|
2018-07-31 02:23:48 +00:00
|
|
|
page(0xc0, 0xd0, nullptr, nullptr);
|
2018-07-26 02:10:21 +00:00
|
|
|
|
2018-07-11 00:00:46 +00:00
|
|
|
insert_media(target.media);
|
2018-04-14 23:46:15 +00:00
|
|
|
}
|
|
|
|
|
2018-05-06 20:17:11 +00:00
|
|
|
~ConcreteMachine() {
|
|
|
|
audio_queue_.flush();
|
|
|
|
}
|
|
|
|
|
2020-01-24 03:57:51 +00:00
|
|
|
void set_scan_target(Outputs::Display::ScanTarget *scan_target) final {
|
2018-11-15 03:04:57 +00:00
|
|
|
video_.set_scan_target(scan_target);
|
2018-04-14 23:46:15 +00:00
|
|
|
}
|
|
|
|
|
2020-01-22 03:28:25 +00:00
|
|
|
Outputs::Display::ScanStatus get_scaled_scan_status() const final {
|
|
|
|
return video_.get_scaled_scan_status();
|
2020-01-21 02:45:10 +00:00
|
|
|
}
|
|
|
|
|
2019-02-13 00:52:32 +00:00
|
|
|
/// Sets the type of display.
|
2020-01-24 03:57:51 +00:00
|
|
|
void set_display_type(Outputs::Display::DisplayType display_type) final {
|
2019-02-13 00:52:32 +00:00
|
|
|
video_.set_display_type(display_type);
|
|
|
|
}
|
|
|
|
|
2020-05-21 03:34:26 +00:00
|
|
|
Outputs::Display::DisplayType get_display_type() const final {
|
2020-03-18 01:53:26 +00:00
|
|
|
return video_.get_display_type();
|
|
|
|
}
|
|
|
|
|
2020-01-24 03:57:51 +00:00
|
|
|
Outputs::Speaker::Speaker *get_speaker() final {
|
2018-04-18 02:28:13 +00:00
|
|
|
return &speaker_;
|
2018-04-14 23:46:15 +00:00
|
|
|
}
|
|
|
|
|
2018-06-09 00:12:15 +00:00
|
|
|
forceinline Cycles perform_bus_operation(const CPU::MOS6502::BusOperation operation, const uint16_t address, uint8_t *const value) {
|
2018-04-15 19:13:07 +00:00
|
|
|
++ cycles_since_video_update_;
|
2018-04-24 04:14:45 +00:00
|
|
|
++ cycles_since_card_update_;
|
2018-04-18 02:28:13 +00:00
|
|
|
cycles_since_audio_update_ += Cycles(7);
|
2018-04-15 19:13:07 +00:00
|
|
|
|
2018-05-23 00:34:59 +00:00
|
|
|
// The Apple II has a slightly weird timing pattern: every 65th CPU cycle is stretched
|
|
|
|
// by an extra 1/7th. That's because one cycle lasts 3.5 NTSC colour clocks, so after
|
|
|
|
// 65 cycles a full line of 227.5 colour clocks have passed. But the high-rate binary
|
|
|
|
// signal approximation that produces colour needs to be in phase, so a stretch of exactly
|
|
|
|
// 0.5 further colour cycles is added. The video class handles that implicitly, but it
|
|
|
|
// needs to be accumulated here for the audio.
|
|
|
|
cycles_into_current_line_ = (cycles_into_current_line_ + 1) % 65;
|
|
|
|
const bool is_stretched_cycle = !cycles_into_current_line_;
|
|
|
|
if(is_stretched_cycle) {
|
|
|
|
++ cycles_since_audio_update_;
|
|
|
|
++ stretched_cycles_since_card_update_;
|
|
|
|
}
|
|
|
|
|
2018-05-23 01:49:34 +00:00
|
|
|
bool has_updated_cards = false;
|
2018-07-28 17:02:49 +00:00
|
|
|
if(read_pages_[address >> 8]) {
|
|
|
|
if(isReadOperation(operation)) *value = read_pages_[address >> 8][address & 0xff];
|
2018-08-11 23:57:39 +00:00
|
|
|
else {
|
|
|
|
if(address >= 0x200 && address < 0x6000) update_video();
|
|
|
|
if(write_pages_[address >> 8]) write_pages_[address >> 8][address & 0xff] = *value;
|
|
|
|
}
|
2018-07-28 17:02:49 +00:00
|
|
|
|
2020-10-23 02:33:31 +00:00
|
|
|
if(is_iie()) {
|
|
|
|
auxiliary_switches_.access(address, isReadOperation(operation));
|
2018-07-31 23:00:46 +00:00
|
|
|
}
|
2018-05-06 00:24:03 +00:00
|
|
|
} else {
|
2018-05-13 22:53:32 +00:00
|
|
|
// Assume a vapour read unless it turns out otherwise; this is a little
|
|
|
|
// wasteful but works for now.
|
|
|
|
//
|
|
|
|
// Longer version: like many other machines, when the Apple II reads from
|
|
|
|
// an address at which no hardware loads the data bus, through a process of
|
|
|
|
// practical analogue effects it'll end up receiving whatever was last on
|
|
|
|
// the bus. Which will always be whatever the video circuit fetched because
|
|
|
|
// that fetches in between every instruction.
|
|
|
|
//
|
|
|
|
// So this code assumes that'll happen unless it later determines that it
|
|
|
|
// doesn't. The call into the video isn't free because it's a just-in-time
|
|
|
|
// actor, but this will actually be the result most of the time so it's not
|
|
|
|
// too terrible.
|
|
|
|
if(isReadOperation(operation) && address != 0xc000) {
|
2018-11-15 03:04:57 +00:00
|
|
|
*value = video_.get_last_read_value(cycles_since_video_update_);
|
2018-05-13 22:53:32 +00:00
|
|
|
}
|
|
|
|
|
2018-05-06 00:24:03 +00:00
|
|
|
switch(address) {
|
|
|
|
default:
|
|
|
|
if(isReadOperation(operation)) {
|
|
|
|
// Read-only switches.
|
2018-04-15 19:13:07 +00:00
|
|
|
switch(address) {
|
2018-08-04 23:17:04 +00:00
|
|
|
default: break;
|
2018-05-06 00:24:03 +00:00
|
|
|
|
2018-04-15 19:13:07 +00:00
|
|
|
case 0xc000:
|
2021-04-20 01:49:06 +00:00
|
|
|
*value = keyboard_.get_keyboard_input();
|
2018-04-15 19:13:07 +00:00
|
|
|
break;
|
2018-08-28 01:14:21 +00:00
|
|
|
case 0xc001: case 0xc002: case 0xc003: case 0xc004: case 0xc005: case 0xc006: case 0xc007:
|
|
|
|
case 0xc008: case 0xc009: case 0xc00a: case 0xc00b: case 0xc00c: case 0xc00d: case 0xc00e: case 0xc00f:
|
2021-04-20 01:49:06 +00:00
|
|
|
*value = (*value & 0x80) | (keyboard_.get_keyboard_input() & 0x7f);
|
2018-08-28 01:14:21 +00:00
|
|
|
break;
|
2018-06-09 21:29:14 +00:00
|
|
|
|
|
|
|
case 0xc061: // Switch input 0.
|
2018-06-13 23:22:34 +00:00
|
|
|
*value &= 0x7f;
|
2018-08-04 23:17:04 +00:00
|
|
|
if(
|
2021-02-17 00:17:32 +00:00
|
|
|
joysticks_.button(0) ||
|
2021-04-20 01:49:06 +00:00
|
|
|
(is_iie() && keyboard_.open_apple_is_pressed)
|
2018-08-04 23:17:04 +00:00
|
|
|
)
|
2018-06-13 23:22:34 +00:00
|
|
|
*value |= 0x80;
|
2018-06-13 02:21:43 +00:00
|
|
|
break;
|
2018-06-09 21:29:14 +00:00
|
|
|
case 0xc062: // Switch input 1.
|
2018-06-13 23:22:34 +00:00
|
|
|
*value &= 0x7f;
|
2018-08-04 23:17:04 +00:00
|
|
|
if(
|
2021-02-17 00:17:32 +00:00
|
|
|
joysticks_.button(1) ||
|
2021-04-20 01:49:06 +00:00
|
|
|
(is_iie() && keyboard_.closed_apple_is_pressed)
|
2018-08-04 23:17:04 +00:00
|
|
|
)
|
2018-06-13 23:22:34 +00:00
|
|
|
*value |= 0x80;
|
2018-06-13 02:21:43 +00:00
|
|
|
break;
|
2018-06-09 21:29:14 +00:00
|
|
|
case 0xc063: // Switch input 2.
|
2018-06-13 23:22:34 +00:00
|
|
|
*value &= 0x7f;
|
2021-02-17 00:17:32 +00:00
|
|
|
if(joysticks_.button(2))
|
2018-06-13 23:22:34 +00:00
|
|
|
*value |= 0x80;
|
2018-06-09 21:29:14 +00:00
|
|
|
break;
|
2018-06-12 02:16:32 +00:00
|
|
|
|
|
|
|
case 0xc064: // Analogue input 0.
|
|
|
|
case 0xc065: // Analogue input 1.
|
|
|
|
case 0xc066: // Analogue input 2.
|
2018-06-13 02:21:43 +00:00
|
|
|
case 0xc067: { // Analogue input 3.
|
|
|
|
const size_t input = address - 0xc064;
|
2018-06-12 02:16:32 +00:00
|
|
|
*value &= 0x7f;
|
2021-02-17 00:17:32 +00:00
|
|
|
if(!joysticks_.analogue_channel_is_discharged(input)) {
|
2018-06-13 02:21:43 +00:00
|
|
|
*value |= 0x80;
|
|
|
|
}
|
|
|
|
} break;
|
2018-07-25 02:15:42 +00:00
|
|
|
|
|
|
|
// The IIe-only state reads follow...
|
2021-04-20 01:49:06 +00:00
|
|
|
#define IIeSwitchRead(s) *value = keyboard_.get_keyboard_input(); if(is_iie()) *value = (*value & 0x7f) | (s ? 0x80 : 0x00);
|
2020-12-01 03:35:51 +00:00
|
|
|
case 0xc011: IIeSwitchRead(language_card_.state().bank2); break;
|
2020-10-23 01:01:12 +00:00
|
|
|
case 0xc012: IIeSwitchRead(language_card_.state().read); break;
|
2020-10-23 02:33:31 +00:00
|
|
|
case 0xc013: IIeSwitchRead(auxiliary_switches_.switches().read_auxiliary_memory); break;
|
|
|
|
case 0xc014: IIeSwitchRead(auxiliary_switches_.switches().write_auxiliary_memory); break;
|
|
|
|
case 0xc015: IIeSwitchRead(auxiliary_switches_.switches().internal_CX_rom); break;
|
|
|
|
case 0xc016: IIeSwitchRead(auxiliary_switches_.switches().alternative_zero_page); break;
|
|
|
|
case 0xc017: IIeSwitchRead(auxiliary_switches_.switches().slot_C3_rom); break;
|
2018-11-15 03:04:57 +00:00
|
|
|
case 0xc018: IIeSwitchRead(video_.get_80_store()); break;
|
|
|
|
case 0xc019: IIeSwitchRead(video_.get_is_vertical_blank(cycles_since_video_update_)); break;
|
|
|
|
case 0xc01a: IIeSwitchRead(video_.get_text()); break;
|
|
|
|
case 0xc01b: IIeSwitchRead(video_.get_mixed()); break;
|
|
|
|
case 0xc01c: IIeSwitchRead(video_.get_page2()); break;
|
|
|
|
case 0xc01d: IIeSwitchRead(video_.get_high_resolution()); break;
|
|
|
|
case 0xc01e: IIeSwitchRead(video_.get_alternative_character_set()); break;
|
|
|
|
case 0xc01f: IIeSwitchRead(video_.get_80_columns()); break;
|
2018-08-31 00:18:36 +00:00
|
|
|
#undef IIeSwitchRead
|
|
|
|
|
|
|
|
case 0xc07f:
|
2018-11-15 03:04:57 +00:00
|
|
|
if(is_iie()) *value = (*value & 0x7f) | (video_.get_annunciator_3() ? 0x80 : 0x00);
|
2018-08-31 00:18:36 +00:00
|
|
|
break;
|
2018-04-15 19:13:07 +00:00
|
|
|
}
|
2018-05-06 00:24:03 +00:00
|
|
|
} else {
|
2018-07-25 02:15:42 +00:00
|
|
|
// Write-only switches. All IIe as currently implemented.
|
2018-08-11 14:26:30 +00:00
|
|
|
if(is_iie()) {
|
2020-10-23 02:33:31 +00:00
|
|
|
auxiliary_switches_.access(address, false);
|
2018-07-25 02:15:42 +00:00
|
|
|
switch(address) {
|
2018-08-12 02:57:54 +00:00
|
|
|
default: break;
|
2018-07-29 14:41:12 +00:00
|
|
|
|
2018-08-04 01:20:21 +00:00
|
|
|
case 0xc000:
|
|
|
|
case 0xc001:
|
2018-08-05 21:47:23 +00:00
|
|
|
update_video();
|
2018-11-15 03:04:57 +00:00
|
|
|
video_.set_80_store(!!(address&1));
|
2018-07-28 17:31:25 +00:00
|
|
|
break;
|
2018-07-25 02:15:42 +00:00
|
|
|
|
|
|
|
case 0xc00c:
|
2018-08-05 21:47:23 +00:00
|
|
|
case 0xc00d:
|
|
|
|
update_video();
|
2018-11-15 03:04:57 +00:00
|
|
|
video_.set_80_columns(!!(address&1));
|
2018-08-05 21:47:23 +00:00
|
|
|
break;
|
2018-07-25 02:15:42 +00:00
|
|
|
|
2018-08-04 01:20:21 +00:00
|
|
|
case 0xc00e:
|
2018-08-05 21:47:23 +00:00
|
|
|
case 0xc00f:
|
|
|
|
update_video();
|
2018-11-15 03:04:57 +00:00
|
|
|
video_.set_alternative_character_set(!!(address&1));
|
2018-08-05 21:47:23 +00:00
|
|
|
break;
|
2018-07-25 02:15:42 +00:00
|
|
|
}
|
|
|
|
}
|
2018-04-15 19:13:07 +00:00
|
|
|
}
|
2018-05-06 00:24:03 +00:00
|
|
|
break;
|
|
|
|
|
2021-02-17 00:17:32 +00:00
|
|
|
case 0xc070: joysticks_.access_c070(); break;
|
2018-06-13 22:16:02 +00:00
|
|
|
|
2018-09-07 03:23:19 +00:00
|
|
|
/* Switches triggered by reading or writing. */
|
2018-07-30 23:54:25 +00:00
|
|
|
case 0xc050:
|
|
|
|
case 0xc051:
|
|
|
|
update_video();
|
2018-11-15 03:04:57 +00:00
|
|
|
video_.set_text(!!(address&1));
|
2018-07-30 23:54:25 +00:00
|
|
|
break;
|
2018-11-15 03:04:57 +00:00
|
|
|
case 0xc052: update_video(); video_.set_mixed(false); break;
|
|
|
|
case 0xc053: update_video(); video_.set_mixed(true); break;
|
2018-07-29 14:41:12 +00:00
|
|
|
case 0xc054:
|
|
|
|
case 0xc055:
|
|
|
|
update_video();
|
2020-10-24 23:00:03 +00:00
|
|
|
video_.set_page2(address&1);
|
2020-10-23 02:33:31 +00:00
|
|
|
auxiliary_switches_.access(address, isReadOperation(operation));
|
2018-07-29 14:41:12 +00:00
|
|
|
break;
|
2018-07-31 03:23:18 +00:00
|
|
|
case 0xc056:
|
|
|
|
case 0xc057:
|
|
|
|
update_video();
|
2020-10-24 23:00:03 +00:00
|
|
|
video_.set_high_resolution(address&1);
|
2020-10-23 02:33:31 +00:00
|
|
|
auxiliary_switches_.access(address, isReadOperation(operation));
|
2018-07-31 03:23:18 +00:00
|
|
|
break;
|
2018-05-06 00:24:03 +00:00
|
|
|
|
2018-08-05 21:47:23 +00:00
|
|
|
case 0xc05e:
|
|
|
|
case 0xc05f:
|
2018-08-11 14:26:30 +00:00
|
|
|
if(is_iie()) {
|
2018-08-05 21:47:23 +00:00
|
|
|
update_video();
|
2018-11-15 03:04:57 +00:00
|
|
|
video_.set_annunciator_3(!(address&1));
|
2018-08-05 21:47:23 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2018-08-31 00:18:36 +00:00
|
|
|
case 0xc010:
|
2021-04-20 01:49:06 +00:00
|
|
|
keyboard_.keyboard_input &= 0x7f;
|
|
|
|
if(keyboard_.string_serialiser) {
|
|
|
|
if(!keyboard_.string_serialiser->advance())
|
|
|
|
keyboard_.string_serialiser.reset();
|
2018-05-13 15:30:04 +00:00
|
|
|
}
|
2018-07-26 02:10:21 +00:00
|
|
|
|
|
|
|
// On the IIe, reading C010 returns additional key info.
|
2018-08-11 14:26:30 +00:00
|
|
|
if(is_iie() && isReadOperation(operation)) {
|
2021-04-20 01:49:06 +00:00
|
|
|
*value = (keyboard_.key_is_down ? 0x80 : 0x00) | (keyboard_.keyboard_input & 0x7f);
|
2018-07-26 02:10:21 +00:00
|
|
|
}
|
2018-05-06 00:24:03 +00:00
|
|
|
break;
|
|
|
|
|
2018-08-28 01:14:21 +00:00
|
|
|
case 0xc030: case 0xc031: case 0xc032: case 0xc033: case 0xc034: case 0xc035: case 0xc036: case 0xc037:
|
|
|
|
case 0xc038: case 0xc039: case 0xc03a: case 0xc03b: case 0xc03c: case 0xc03d: case 0xc03e: case 0xc03f:
|
2018-05-06 00:24:03 +00:00
|
|
|
update_audio();
|
|
|
|
audio_toggle_.set_output(!audio_toggle_.get_output());
|
|
|
|
break;
|
2018-05-06 20:17:11 +00:00
|
|
|
|
|
|
|
case 0xc080: case 0xc084: case 0xc088: case 0xc08c:
|
|
|
|
case 0xc081: case 0xc085: case 0xc089: case 0xc08d:
|
|
|
|
case 0xc082: case 0xc086: case 0xc08a: case 0xc08e:
|
|
|
|
case 0xc083: case 0xc087: case 0xc08b: case 0xc08f:
|
2020-10-23 01:01:12 +00:00
|
|
|
language_card_.access(address, isReadOperation(operation));
|
2018-05-06 20:17:11 +00:00
|
|
|
break;
|
2018-04-24 04:14:45 +00:00
|
|
|
}
|
2018-05-06 00:24:03 +00:00
|
|
|
|
2018-05-23 00:34:59 +00:00
|
|
|
/*
|
2018-05-23 01:49:34 +00:00
|
|
|
Communication with cards follows.
|
2018-05-23 00:34:59 +00:00
|
|
|
*/
|
|
|
|
|
2018-07-28 17:02:49 +00:00
|
|
|
if(!read_pages_[address >> 8] && address >= 0xc090 && address < 0xc800) {
|
2018-05-23 00:34:59 +00:00
|
|
|
// If this is a card access, figure out which card is at play before determining
|
|
|
|
// the totality of who needs messaging.
|
2018-07-28 17:31:25 +00:00
|
|
|
size_t card_number = 0;
|
2019-05-03 22:14:10 +00:00
|
|
|
Apple::II::Card::Select select = Apple::II::Card::None;
|
2018-05-22 00:54:53 +00:00
|
|
|
|
|
|
|
if(address >= 0xc100) {
|
|
|
|
/*
|
|
|
|
Decode the area conventionally used by cards for ROMs:
|
|
|
|
0xCn00 to 0xCnff: card n.
|
|
|
|
*/
|
|
|
|
card_number = (address - 0xc100) >> 8;
|
2019-05-03 22:14:10 +00:00
|
|
|
select = Apple::II::Card::Device;
|
2018-05-22 00:54:53 +00:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
Decode the area conventionally used by cards for registers:
|
|
|
|
C0n0 to C0nF: card n - 8.
|
|
|
|
*/
|
|
|
|
card_number = (address - 0xc090) >> 4;
|
2019-05-03 22:14:10 +00:00
|
|
|
select = Apple::II::Card::IO;
|
2018-05-06 00:24:03 +00:00
|
|
|
}
|
2018-05-22 00:54:53 +00:00
|
|
|
|
2018-07-28 17:31:25 +00:00
|
|
|
// If the selected card is a just-in-time card, update the just-in-time cards,
|
|
|
|
// and then message it specifically.
|
|
|
|
const bool is_read = isReadOperation(operation);
|
2020-05-10 03:00:39 +00:00
|
|
|
Apple::II::Card *const target = cards_[size_t(card_number)].get();
|
2018-07-28 17:31:25 +00:00
|
|
|
if(target && !is_every_cycle_card(target)) {
|
|
|
|
update_just_in_time_cards();
|
|
|
|
target->perform_bus_operation(select, is_read, address, value);
|
|
|
|
}
|
2018-04-24 04:14:45 +00:00
|
|
|
|
2018-07-28 17:31:25 +00:00
|
|
|
// Update all the every-cycle cards regardless, but send them a ::None select if they're
|
|
|
|
// not the one actually selected.
|
|
|
|
for(const auto &card: every_cycle_cards_) {
|
|
|
|
card->run_for(Cycles(1), is_stretched_cycle);
|
|
|
|
card->perform_bus_operation(
|
2019-05-03 22:14:10 +00:00
|
|
|
(card == target) ? select : Apple::II::Card::None,
|
2018-07-28 17:31:25 +00:00
|
|
|
is_read, address, value);
|
2018-05-23 00:34:59 +00:00
|
|
|
}
|
2018-07-28 17:31:25 +00:00
|
|
|
has_updated_cards = true;
|
2018-05-23 01:49:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!has_updated_cards && !every_cycle_cards_.empty()) {
|
|
|
|
// Update all every-cycle cards and give them the cycle.
|
|
|
|
const bool is_read = isReadOperation(operation);
|
|
|
|
for(const auto &card: every_cycle_cards_) {
|
|
|
|
card->run_for(Cycles(1), is_stretched_cycle);
|
2019-05-03 22:14:10 +00:00
|
|
|
card->perform_bus_operation(Apple::II::Card::None, is_read, address, value);
|
2018-05-23 00:34:59 +00:00
|
|
|
}
|
2018-04-15 19:13:07 +00:00
|
|
|
}
|
|
|
|
|
2019-09-28 22:34:04 +00:00
|
|
|
// Update the card lists if any mutations are due.
|
|
|
|
if(card_lists_are_dirty_) {
|
|
|
|
card_lists_are_dirty_ = false;
|
|
|
|
|
|
|
|
// There's only one counter of time since update
|
|
|
|
// for just-in-time cards. If something new is
|
|
|
|
// transitioning, that needs to be zeroed.
|
|
|
|
if(card_became_just_in_time_) {
|
|
|
|
card_became_just_in_time_ = false;
|
|
|
|
update_just_in_time_cards();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the two lists and repopulate.
|
|
|
|
every_cycle_cards_.clear();
|
|
|
|
just_in_time_cards_.clear();
|
|
|
|
for(const auto &card: cards_) {
|
|
|
|
if(!card) continue;
|
|
|
|
if(is_every_cycle_card(card.get())) {
|
|
|
|
every_cycle_cards_.push_back(card.get());
|
|
|
|
} else {
|
|
|
|
just_in_time_cards_.push_back(card.get());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-13 02:21:43 +00:00
|
|
|
// Update analogue charge level.
|
2021-02-17 00:17:32 +00:00
|
|
|
joysticks_.update_charge();
|
2018-06-13 02:21:43 +00:00
|
|
|
|
2018-04-15 01:41:26 +00:00
|
|
|
return Cycles(1);
|
|
|
|
}
|
|
|
|
|
2018-04-15 19:13:07 +00:00
|
|
|
void flush() {
|
|
|
|
update_video();
|
2018-04-18 02:28:13 +00:00
|
|
|
update_audio();
|
2018-05-23 01:49:34 +00:00
|
|
|
update_just_in_time_cards();
|
2018-04-18 02:28:13 +00:00
|
|
|
audio_queue_.perform();
|
2018-04-15 19:13:07 +00:00
|
|
|
}
|
|
|
|
|
2020-01-24 03:57:51 +00:00
|
|
|
void run_for(const Cycles cycles) final {
|
2018-04-15 19:13:07 +00:00
|
|
|
m6502_.run_for(cycles);
|
|
|
|
}
|
2018-04-16 01:11:30 +00:00
|
|
|
|
2020-11-28 02:00:48 +00:00
|
|
|
bool prefers_logical_input() final {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-01-24 03:57:51 +00:00
|
|
|
Inputs::Keyboard &get_keyboard() final {
|
2021-04-20 01:49:06 +00:00
|
|
|
return keyboard_;
|
2018-04-16 01:11:30 +00:00
|
|
|
}
|
2018-04-22 04:21:57 +00:00
|
|
|
|
2020-01-24 03:57:51 +00:00
|
|
|
void type_string(const std::string &string) final {
|
2021-04-20 01:49:06 +00:00
|
|
|
keyboard_.string_serialiser = std::make_unique<Utility::StringSerialiser>(string, true);
|
2018-05-13 15:30:04 +00:00
|
|
|
}
|
|
|
|
|
2020-05-21 03:34:26 +00:00
|
|
|
bool can_type(char c) const final {
|
2020-03-02 01:25:12 +00:00
|
|
|
// Make an effort to type the entire printable ASCII range.
|
|
|
|
return c >= 32 && c < 127;
|
|
|
|
}
|
|
|
|
|
2019-02-13 00:52:32 +00:00
|
|
|
// MARK:: Configuration options.
|
2020-03-17 03:25:05 +00:00
|
|
|
std::unique_ptr<Reflection::Struct> get_options() final {
|
2020-03-18 01:53:26 +00:00
|
|
|
auto options = std::make_unique<Options>(Configurable::OptionsType::UserFriendly);
|
|
|
|
options->output = get_video_signal_configurable();
|
|
|
|
return options;
|
2019-02-13 00:52:32 +00:00
|
|
|
}
|
|
|
|
|
2020-03-18 01:53:26 +00:00
|
|
|
void set_options(const std::unique_ptr<Reflection::Struct> &str) {
|
|
|
|
const auto options = dynamic_cast<Options *>(str.get());
|
|
|
|
set_video_signal_configurable(options->output);
|
2019-02-13 00:52:32 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 01:32:28 +00:00
|
|
|
// MARK: MediaTarget
|
2020-01-24 03:57:51 +00:00
|
|
|
bool insert_media(const Analyser::Static::Media &media) final {
|
2018-06-09 21:29:14 +00:00
|
|
|
if(!media.disks.empty()) {
|
|
|
|
auto diskii = diskii_card();
|
|
|
|
if(diskii) diskii->set_disk(media.disks[0], 0);
|
2018-04-25 02:44:45 +00:00
|
|
|
}
|
2018-04-22 04:21:57 +00:00
|
|
|
return true;
|
|
|
|
}
|
2018-05-11 02:17:13 +00:00
|
|
|
|
|
|
|
// MARK: Activity::Source
|
2020-01-24 03:57:51 +00:00
|
|
|
void set_activity_observer(Activity::Observer *observer) final {
|
2018-05-11 02:17:13 +00:00
|
|
|
for(const auto &card: cards_) {
|
|
|
|
if(card) card->set_activity_observer(observer);
|
|
|
|
}
|
|
|
|
}
|
2018-06-10 22:28:29 +00:00
|
|
|
|
2018-06-12 02:16:32 +00:00
|
|
|
// MARK: JoystickMachine
|
2020-01-24 03:57:51 +00:00
|
|
|
const std::vector<std::unique_ptr<Inputs::Joystick>> &get_joysticks() final {
|
2021-02-17 00:17:32 +00:00
|
|
|
return joysticks_.get_joysticks();
|
2018-06-12 02:16:32 +00:00
|
|
|
}
|
2018-04-14 23:46:15 +00:00
|
|
|
};
|
|
|
|
|
2019-05-03 22:14:10 +00:00
|
|
|
}
|
2018-04-14 23:46:15 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 22:14:10 +00:00
|
|
|
using namespace Apple::II;
|
2018-04-14 23:46:15 +00:00
|
|
|
|
2018-07-11 00:00:46 +00:00
|
|
|
Machine *Machine::AppleII(const Analyser::Static::Target *target, const ROMMachine::ROMFetcher &rom_fetcher) {
|
|
|
|
using Target = Analyser::Static::AppleII::Target;
|
|
|
|
const Target *const appleii_target = dynamic_cast<const Target *>(target);
|
2018-08-11 14:26:30 +00:00
|
|
|
switch(appleii_target->model) {
|
|
|
|
default: return nullptr;
|
|
|
|
case Target::Model::II: return new ConcreteMachine<Target::Model::II>(*appleii_target, rom_fetcher);
|
|
|
|
case Target::Model::IIplus: return new ConcreteMachine<Target::Model::IIplus>(*appleii_target, rom_fetcher);
|
|
|
|
case Target::Model::IIe: return new ConcreteMachine<Target::Model::IIe>(*appleii_target, rom_fetcher);
|
|
|
|
case Target::Model::EnhancedIIe: return new ConcreteMachine<Target::Model::EnhancedIIe>(*appleii_target, rom_fetcher);
|
2018-07-25 02:15:42 +00:00
|
|
|
}
|
2018-04-14 23:46:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Machine::~Machine() {}
|