OSCR
Open Source Cartridge Reader
Loading...
Searching...
No Matches
GPC.h
1#pragma once
2#if !defined(OSCR_CORE_GPC_H_)
3# define OSCR_CORE_GPC_H_
4
5# include "config.h"
6
7# if HAS_GPC
8# include "syslibinc.h"
9# include "common/Types.h"
10
15{
16 void menu();
17
18 void cartOn();
19 void cartOff();
20
21 void printHeader();
22
23 void writeBank(uint8_t myBank, uint16_t myAddress, uint8_t myData);
24 uint8_t readBank(uint8_t myBank, uint16_t myAddress);
25
26 void readRAM();
27 bool writeRAM();
28} /* namespace OSCR::Cores::GPC */
29
30# endif /* HAS_GPC */
31#endif /* OSCR_CORE_GPC_H_ */
System core for SNES Game Processor RAM Cassettes.
Definition GPC.h:15