mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-04 15:05:36 +00:00
19 lines
401 B
Objective-C
19 lines
401 B
Objective-C
//
|
|
// CSOric.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 11/10/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import "CSMachine.h"
|
|
#import "CSKeyboardMachine.h"
|
|
#import "CSFastLoading.h"
|
|
|
|
@interface CSOric : CSMachine <CSKeyboardMachine, CSFastLoading>
|
|
|
|
@property (nonatomic, assign) BOOL useFastLoadingHack;
|
|
@property (nonatomic, assign) BOOL useCompositeOutput;
|
|
|
|
@end
|