mirror of https://github.com/bsnes-emu/bsnes.git
18 lines
416 B
Objective-C
18 lines
416 B
Objective-C
#import "Document.h"
|
|
#import "HexFiend/HexFiend.h"
|
|
#import "HexFiend/HFByteArray.h"
|
|
|
|
typedef enum {
|
|
GBMemoryEntireSpace,
|
|
GBMemoryROM,
|
|
GBMemoryVRAM,
|
|
GBMemoryExternalRAM,
|
|
GBMemoryRAM
|
|
} GB_memory_mode_t;
|
|
|
|
@interface GBMemoryByteArray : HFByteArray
|
|
- (instancetype) initWithDocument:(Document *)document;
|
|
@property (nonatomic) uint16_t selectedBank;
|
|
@property (nonatomic) GB_memory_mode_t mode;
|
|
@end
|