mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-04 15:05:36 +00:00
7e106c6add
A complete guess on the latter, as if you didn't know.
62 lines
1.2 KiB
C++
62 lines
1.2 KiB
C++
//
|
|
// 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>
|
|
#include <vector>
|
|
|
|
namespace Apple {
|
|
namespace IIgs {
|
|
namespace ADB {
|
|
|
|
class GLU {
|
|
public:
|
|
// Behaviour varies slightly between the controller shipped with ROM01 machines
|
|
// and that shipped with ROM03 machines; use this to set the desired behaviour.
|
|
void set_is_rom03(bool);
|
|
|
|
uint8_t get_keyboard_data();
|
|
uint8_t get_mouse_data();
|
|
uint8_t get_modifier_status();
|
|
uint8_t get_any_key_down();
|
|
|
|
uint8_t get_data();
|
|
uint8_t get_status();
|
|
|
|
void set_command(uint8_t);
|
|
void set_status(uint8_t);
|
|
void clear_key_strobe();
|
|
|
|
private:
|
|
bool is_rom03_ = false;
|
|
std::vector<uint8_t> next_command_;
|
|
std::vector<uint8_t> pending_response_;
|
|
|
|
void abort();
|
|
void reset_microcontroller();
|
|
void flush_keyboard_buffer();
|
|
|
|
void set_modes(uint8_t modes);
|
|
uint8_t modes_ = 0;
|
|
|
|
void set_device_srq(int mask);
|
|
int device_srq_ = 0;
|
|
|
|
void set_configuration_bytes(uint8_t *);
|
|
|
|
uint8_t read_microcontroller_address(uint16_t);
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* Apple_IIgs_ADB_hpp */
|