mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
40 lines
1.0 KiB
Objective-C
40 lines
1.0 KiB
Objective-C
//
|
|
// TestMachineZ80.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 16/05/2017.
|
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
typedef NS_ENUM(NSInteger, CSTestMachineZ80Register) {
|
|
CSTestMachineZ80RegisterProgramCounter,
|
|
CSTestMachineZ80RegisterStackPointer,
|
|
|
|
CSTestMachineZ80RegisterC,
|
|
CSTestMachineZ80RegisterE,
|
|
CSTestMachineZ80RegisterDE,
|
|
};
|
|
|
|
@class CSTestMachineZ80;
|
|
|
|
@protocol CSTestMachineTrapHandler
|
|
- (void)testMachine:(CSTestMachineZ80 *)testMachine didTrapAtAddress:(uint16_t)address;
|
|
@end
|
|
|
|
@interface CSTestMachineZ80 : NSObject
|
|
|
|
- (void)setData:(NSData *)data atAddress:(uint16_t)startAddress;
|
|
- (void)setValue:(uint8_t)value atAddress:(uint16_t)address;
|
|
- (uint8_t)valueAtAddress:(uint16_t)address;
|
|
- (void)runForNumberOfCycles:(int)cycles;
|
|
|
|
- (void)setValue:(uint16_t)value forRegister:(CSTestMachineZ80Register)reg;
|
|
- (uint16_t)valueForRegister:(CSTestMachineZ80Register)reg;
|
|
|
|
@property(nonatomic, weak) id<CSTestMachineTrapHandler> trapHandler;
|
|
- (void)addTrapAddress:(uint16_t)trapAddress;
|
|
|
|
@end
|