2017-06-04 17:55:19 -04:00
|
|
|
//
|
|
|
|
// ZX8081.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 04/06/2017.
|
2018-05-13 15:19:52 -04:00
|
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
2017-06-04 17:55:19 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ZX8081_hpp
|
|
|
|
#define ZX8081_hpp
|
|
|
|
|
2017-11-18 19:48:10 -05:00
|
|
|
#include "../../Configurable/Configurable.hpp"
|
2018-03-09 15:19:02 -05:00
|
|
|
#include "../../Analyser/Static/StaticAnalyser.hpp"
|
2017-06-04 17:55:19 -04:00
|
|
|
|
|
|
|
namespace ZX8081 {
|
|
|
|
|
2017-11-20 21:55:32 -05:00
|
|
|
/// @returns The options available for a ZX80 or ZX81.
|
|
|
|
std::vector<std::unique_ptr<Configurable::Option>> get_options();
|
|
|
|
|
2018-03-09 15:19:02 -05:00
|
|
|
class Machine {
|
2017-06-04 17:55:19 -04:00
|
|
|
public:
|
2017-08-11 12:11:01 -04:00
|
|
|
virtual ~Machine();
|
2017-07-08 20:40:19 -04:00
|
|
|
|
2018-03-09 15:36:11 -05:00
|
|
|
static Machine *ZX8081(const Analyser::Static::Target *target_hint);
|
2017-06-22 20:20:31 -04:00
|
|
|
|
2017-08-02 22:12:59 -04:00
|
|
|
virtual void set_tape_is_playing(bool is_playing) = 0;
|
2018-02-14 21:46:50 -05:00
|
|
|
virtual bool get_tape_is_playing() = 0;
|
2017-06-04 17:55:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ZX8081_hpp */
|