1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-04 01:57:54 +00:00

Starts working on the GPIP functionality block.

This commit is contained in:
Thomas Harte 2019-10-16 23:21:25 -04:00
parent 0fd8813ddb
commit f2e1584275

View File

@ -15,6 +15,16 @@
namespace Motorola { namespace Motorola {
namespace MFP68901 { namespace MFP68901 {
class PortHandler {
public:
/*!
Requests the current input on the GPIP port.
*/
virtual uint8_t get_port_input() {
return 0xff;
}
};
class MFP68901 { class MFP68901 {
public: public:
uint8_t read(int address); uint8_t read(int address);
@ -25,6 +35,10 @@ class MFP68901 {
void set_timer_event_input(int channel, bool value); void set_timer_event_input(int channel, bool value);
void set_port_handler(PortHandler *);
void set_port_input(uint8_t);
uint8_t get_port_output();
private: private:
// MARK: - Timers // MARK: - Timers
enum class TimerMode { enum class TimerMode {