2017-06-04 17:55:19 -04:00
|
|
|
//
|
|
|
|
// ZX8081.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 04/06/2017.
|
|
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ZX8081_hpp
|
|
|
|
#define ZX8081_hpp
|
|
|
|
|
|
|
|
#include "../ConfigurationTarget.hpp"
|
|
|
|
#include "../CRTMachine.hpp"
|
2017-08-03 12:38:22 -04:00
|
|
|
#include "../KeyboardMachine.hpp"
|
2017-06-04 17:55:19 -04:00
|
|
|
|
2017-08-02 22:18:30 -04:00
|
|
|
#include <cstdint>
|
|
|
|
#include <vector>
|
|
|
|
|
2017-06-04 17:55:19 -04:00
|
|
|
namespace ZX8081 {
|
|
|
|
|
2017-06-04 18:08:35 -04:00
|
|
|
enum ROMType: uint8_t {
|
2017-11-06 22:14:15 -05:00
|
|
|
ZX80 = 0, ZX81
|
2017-06-04 18:08:35 -04:00
|
|
|
};
|
|
|
|
|
2017-06-04 17:55:19 -04:00
|
|
|
class Machine:
|
|
|
|
public CRTMachine::Machine,
|
2017-08-03 12:38:22 -04:00
|
|
|
public ConfigurationTarget::Machine,
|
|
|
|
public KeyboardMachine::Machine {
|
2017-06-04 17:55:19 -04:00
|
|
|
public:
|
2017-08-27 16:42:16 -04:00
|
|
|
static Machine *ZX8081(const StaticAnalyser::Target &target_hint);
|
2017-08-11 12:11:01 -04:00
|
|
|
virtual ~Machine();
|
2017-07-08 20:40:19 -04:00
|
|
|
|
2017-11-07 21:19:51 -05:00
|
|
|
virtual void set_rom(ROMType type, const std::vector<uint8_t> &data) = 0;
|
2017-06-22 20:20:31 -04:00
|
|
|
|
2017-08-02 22:12:59 -04:00
|
|
|
virtual void set_use_fast_tape_hack(bool activate) = 0;
|
|
|
|
virtual void set_tape_is_playing(bool is_playing) = 0;
|
|
|
|
virtual void set_use_automatic_tape_motor_control(bool enabled) = 0;
|
2017-06-04 17:55:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ZX8081_hpp */
|