2017-07-30 22:05:29 -04:00
|
|
|
//
|
|
|
|
// AmstradCPC.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 30/07/2017.
|
2018-05-13 15:19:52 -04:00
|
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
2017-07-30 22:05:29 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef AmstradCPC_hpp
|
|
|
|
#define AmstradCPC_hpp
|
|
|
|
|
|
|
|
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
|
|
|
*/
|
2018-03-09 15:19:02 -05:00
|
|
|
class 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 */
|