mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-17 02:30:54 +00:00
17 lines
284 B
Objective-C
17 lines
284 B
Objective-C
//
|
|
// CSAmstradCPC.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 30/07/2017.
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import "CSMachine.h"
|
|
#import "CSKeyboardMachine.h"
|
|
|
|
@interface CSAmstradCPC : CSMachine <CSKeyboardMachine>
|
|
|
|
- (instancetype)init;
|
|
|
|
@end
|