pureikyubu/SRC/Hardware/EFB.h
ogamespec 1ed07dfcaa Datatype and refactoring completed
- Emulatror -> Core
- Debugger now in its own place
2020-03-05 11:18:20 +03:00

11 lines
421 B
C

#define EFB_BASE 0x08000000
#define EFB_SIZE 0x200000 // 2 mb
#define EFB_MASK 0x1fffff
// peeks and pokes
void EFBPeek8(uint32_t ofs, uint32_t *reg);
void EFBPeek16(uint32_t ofs, uint32_t *reg);
void EFBPeek32(uint32_t ofs, uint32_t *reg);
void EFBPoke8(uint32_t ofs, uint32_t data);
void EFBPoke16(uint32_t ofs, uint32_t data);
void EFBPoke32(uint32_t ofs, uint32_t data);