2017-06-04 21:55:19 +00:00
|
|
|
//
|
|
|
|
// CSZX8081.h
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 04/06/2017.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
2017-06-04 21:55:19 +00:00
|
|
|
//
|
|
|
|
|
2018-02-13 02:46:21 +00:00
|
|
|
@class CSZX8081;
|
2017-06-04 21:55:19 +00:00
|
|
|
#import "CSMachine.h"
|
|
|
|
|
2018-02-13 02:46:21 +00:00
|
|
|
@interface CSZX8081 : NSObject
|
|
|
|
|
|
|
|
- (instancetype)initWithZX8081:(void *)zx8081 owner:(CSMachine *)machine;
|
2017-06-04 21:55:19 +00:00
|
|
|
|
2017-07-08 23:12:06 +00:00
|
|
|
@property (nonatomic, assign) BOOL tapeIsPlaying;
|
|
|
|
|
2017-06-04 21:55:19 +00:00
|
|
|
@end
|