mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-23 18:31:53 +00:00
ddf1bf3cbf
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.
19 lines
345 B
Objective-C
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
|