2017-07-30 22:05:29 -04:00
|
|
|
//
|
|
|
|
// AmstradCPC.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 30/07/2017.
|
|
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef AmstradCPC_hpp
|
|
|
|
#define AmstradCPC_hpp
|
|
|
|
|
|
|
|
#include "../ConfigurationTarget.hpp"
|
|
|
|
#include "../CRTMachine.hpp"
|
2017-08-03 12:38:22 -04:00
|
|
|
#include "../KeyboardMachine.hpp"
|
2017-07-30 22:05:29 -04:00
|
|
|
|
|
|
|
namespace AmstradCPC {
|
|
|
|
|
2017-08-02 20:37:26 -04:00
|
|
|
/*!
|
2017-08-16 14:53:03 -04:00
|
|
|
Models an Amstrad CPC.
|
2017-08-02 20:37:26 -04:00
|
|
|
*/
|
2017-07-30 22:05:29 -04:00
|
|
|
class Machine:
|
|
|
|
public CRTMachine::Machine,
|
2017-08-03 12:38:22 -04:00
|
|
|
public ConfigurationTarget::Machine,
|
|
|
|
public KeyboardMachine::Machine {
|
2017-07-30 22:05:29 -04:00
|
|
|
public:
|
2017-08-11 12:07:48 -04:00
|
|
|
virtual ~Machine();
|
|
|
|
|
2017-08-16 15:33:40 -04:00
|
|
|
/// Creates and returns an Amstrad CPC.
|
2017-07-31 22:32:04 -04:00
|
|
|
static Machine *AmstradCPC();
|
2017-07-30 22:05:29 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* AmstradCPC_hpp */
|