mirror of
https://github.com/TomHarte/CLK.git
synced 2024-10-31 18:04:37 +00:00
23 lines
502 B
Objective-C
23 lines
502 B
Objective-C
//
|
|
// TestMachine.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 03/06/2017.
|
|
// Copyright 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class CSTestMachine;
|
|
|
|
@protocol CSTestMachineTrapHandler
|
|
- (void)testMachine:(nonnull CSTestMachine *)testMachine didTrapAtAddress:(uint16_t)address;
|
|
@end
|
|
|
|
@interface CSTestMachine : NSObject
|
|
|
|
@property(nonatomic, weak, nullable) id<CSTestMachineTrapHandler> trapHandler;
|
|
- (void)addTrapAddress:(uint16_t)trapAddress;
|
|
|
|
@end
|