1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-17 13:29:02 +00:00
CLK/OSBindings/Mac/Clock Signal/Machine/Wrappers/CSZX8081.h
Thomas Harte ddf1bf3cbf Reintroduces options selection for the Mac.
For everything except the Vic-20, anyway. That has a somewhat outdated notion of what an options panel should be, corresponding to the work yet to do on its analyser.
2018-02-12 21:46:21 -05:00

19 lines
345 B
Objective-C

//
// CSZX8081.h
// Clock Signal
//
// Created by Thomas Harte on 04/06/2017.
// Copyright © 2017 Thomas Harte. All rights reserved.
//
@class CSZX8081;
#import "CSMachine.h"
@interface CSZX8081 : NSObject
- (instancetype)initWithZX8081:(void *)zx8081 owner:(CSMachine *)machine;
@property (nonatomic, assign) BOOL tapeIsPlaying;
@end