2020-11-01 01:00:15 +00:00
|
|
|
//
|
|
|
|
// ADB.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 31/10/2020.
|
|
|
|
// Copyright © 2020 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef Apple_IIgs_ADB_hpp
|
|
|
|
#define Apple_IIgs_ADB_hpp
|
|
|
|
|
|
|
|
#include <cstdint>
|
2020-11-10 00:05:48 +00:00
|
|
|
#include <vector>
|
2021-01-18 21:59:49 +00:00
|
|
|
#include "../../../InstructionSets/M50740/Executor.hpp"
|
2020-11-01 01:00:15 +00:00
|
|
|
|
|
|
|
namespace Apple {
|
|
|
|
namespace IIgs {
|
|
|
|
namespace ADB {
|
|
|
|
|
2021-01-24 23:07:05 +00:00
|
|
|
class GLU: public InstructionSet::M50740::PortHandler {
|
2020-11-01 01:00:15 +00:00
|
|
|
public:
|
2021-01-24 23:07:05 +00:00
|
|
|
GLU();
|
|
|
|
|
2020-11-10 00:05:48 +00:00
|
|
|
// Behaviour varies slightly between the controller shipped with ROM01 machines
|
|
|
|
// and that shipped with ROM03 machines; use this to set the desired behaviour.
|
2021-01-30 22:53:27 +00:00
|
|
|
// void set_is_rom03(bool);
|
2020-11-10 00:05:48 +00:00
|
|
|
|
2020-11-01 01:00:15 +00:00
|
|
|
uint8_t get_keyboard_data();
|
|
|
|
uint8_t get_mouse_data();
|
|
|
|
uint8_t get_modifier_status();
|
2020-11-05 02:35:11 +00:00
|
|
|
uint8_t get_any_key_down();
|
2020-11-01 01:00:15 +00:00
|
|
|
|
|
|
|
uint8_t get_data();
|
|
|
|
uint8_t get_status();
|
|
|
|
|
|
|
|
void set_command(uint8_t);
|
|
|
|
void set_status(uint8_t);
|
2020-11-05 02:35:11 +00:00
|
|
|
void clear_key_strobe();
|
2020-11-10 00:05:48 +00:00
|
|
|
|
2021-01-18 21:59:49 +00:00
|
|
|
void set_microcontroller_rom(const std::vector<uint8_t> &rom);
|
|
|
|
|
2021-01-24 03:55:12 +00:00
|
|
|
void run_for(Cycles cycles);
|
|
|
|
|
2020-11-10 00:05:48 +00:00
|
|
|
private:
|
2021-01-18 21:59:49 +00:00
|
|
|
InstructionSet::M50740::Executor executor_;
|
2021-01-24 23:07:05 +00:00
|
|
|
|
2021-01-25 22:43:22 +00:00
|
|
|
void run_ports_for(Cycles) override;
|
2021-01-24 23:07:05 +00:00
|
|
|
void set_port_output(int port, uint8_t value) override;
|
|
|
|
uint8_t get_port_input(int port) override;
|
|
|
|
|
|
|
|
uint8_t registers_[16];
|
|
|
|
uint8_t register_address_;
|
2021-01-30 22:53:27 +00:00
|
|
|
uint8_t register_latch_ = 0xff;
|
|
|
|
|
|
|
|
uint8_t status_ = 0x00;
|
2021-01-25 22:43:22 +00:00
|
|
|
|
|
|
|
// TODO: this should be per peripheral. But I'm putting it here for now as an exploratory step.
|
|
|
|
bool adb_level_ = true;
|
|
|
|
Cycles low_period_, total_period_;
|
2020-11-01 01:00:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* Apple_IIgs_ADB_hpp */
|