mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-27 15:50:56 +00:00
17 lines
296 B
Objective-C
17 lines
296 B
Objective-C
//
|
|
// CSZX8081.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 04/06/2017.
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import "CSMachine.h"
|
|
#import "CSFastLoading.h"
|
|
|
|
@interface CSZX8081 : CSMachine <CSFastLoading>
|
|
|
|
@property (nonatomic, assign) BOOL tapeIsPlaying;
|
|
|
|
@end
|