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>
|
|
|
|
|
|
|
|
namespace Apple {
|
|
|
|
namespace IIgs {
|
|
|
|
namespace ADB {
|
|
|
|
|
|
|
|
class GLU {
|
|
|
|
public:
|
|
|
|
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-01 01:00:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* Apple_IIgs_ADB_hpp */
|