mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
15 lines
310 B
C
15 lines
310 B
C
|
//
|
||
|
// TestMachine+ForSubclassEyesOnly.h
|
||
|
// Clock Signal
|
||
|
//
|
||
|
// Created by Thomas Harte on 03/06/2017.
|
||
|
// Copyright © 2017 Thomas Harte. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "TestMachine.h"
|
||
|
#include "AllRAMProcessor.hpp"
|
||
|
|
||
|
@interface CSTestMachine (ForSubclassEyesOnly)
|
||
|
- (CPU::AllRAMProcessor *)processor;
|
||
|
@end
|