git.y1.nz

SameBoy

Accurate GB/GBC emulator
download: https://git.y1.nz/archives/sameboy.tar.gz
README | Files | Log | Refs | LICENSE

Cocoa/GBMemoryByteArray.h

      1 #import "Document.h"
      2 #import "HexFiend/HexFiend.h"
      3 #import "HexFiend/HFByteArray.h"
      4 
      5 typedef enum {
      6     GBMemoryEntireSpace,
      7     GBMemoryROM,
      8     GBMemoryVRAM,
      9     GBMemoryExternalRAM,
     10     GBMemoryRAM
     11 } GB_memory_mode_t;
     12 
     13 @interface GBMemoryByteArray : HFByteArray
     14 - (instancetype) initWithDocument:(Document *)document;
     15 @property (nonatomic) uint16_t selectedBank;
     16 @property (nonatomic) GB_memory_mode_t mode;
     17 @end

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.