activegs-ios/Common.iphone/Debugger/EmuWrapper.h
2021-02-06 18:46:00 -10:00

25 lines
346 B
Objective-C

//
// EmuWrapper.h
// activegs
//
// Created by Yoshi Sugawara on 1/17/21.
//
#ifndef EmuWrapper_h
#define EmuWrapper_h
#endif /* EmuWrapper_h */
#import <Foundation/Foundation.h>
@interface EmuWrapper: NSObject
+(unsigned char*) memory;
+(void)pause;
+(void)resume;
+(UIView*)getEmulatorView;
+(unsigned int)cpuGetProgramCounter;
@end