mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-20 14:29:11 +00:00
17 lines
262 B
Objective-C
17 lines
262 B
Objective-C
//
|
|
// CSMSX.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 03/12/2017.
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import "CSMachine.h"
|
|
#import "CSFastLoading.h"
|
|
|
|
@interface CSMSX : CSMachine <CSFastLoading>
|
|
|
|
- (instancetype)init;
|
|
|
|
@end
|