mirror of
https://github.com/TomHarte/CLK.git
synced 2024-10-31 18:04:37 +00:00
20 lines
385 B
Objective-C
20 lines
385 B
Objective-C
//
|
|
// C1540Bridge.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 09/07/2016.
|
|
// Copyright 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface C1540Bridge : NSObject
|
|
|
|
@property (nonatomic) BOOL attentionLine;
|
|
@property (nonatomic) BOOL dataLine;
|
|
@property (nonatomic) BOOL clockLine;
|
|
|
|
- (void)runForCycles:(NSUInteger)numberOfCycles;
|
|
|
|
@end
|