OSCR
Open Source Cartridge Reader
Loading...
Searching...
No Matches
ST.h
1#pragma once
2#if !defined(OSCR_CORE_ST_H_)
3# define OSCR_CORE_ST_H_
4
5# include "config.h"
6
7# if HAS_ST
8# include "syslibinc.h"
9# include "common/Types.h"
10
15{
16 void menu();
17
18 void cartOn();
19 void cartOff();
20
21 void openCRDB();
22 void closeCRDB();
23
24 void printHeader();
25
26 bool getHeader(uint16_t bank);
27 bool checkAdapter();
28 void readSlot(bool cartSlot);
29 void readRom(uint16_t bankStart, uint16_t bankEnd);
30} /* namespace OSCR::Cores::ST */
31
32# endif /* HAS_ST */
33#endif /* OSCR_CORE_ST_H_ */
System core for the SuFami Turbo.
Definition ST.h:15