OSCR
Open Source Cartridge Reader
Loading...
Searching...
No Matches
VIC20.h
1#pragma once
2#if !defined(OSCR_CORE_VIC20_H_)
3# define OSCR_CORE_VIC20_H_
4
5# include "config.h"
6
7# if HAS_VIC20
8# include "syslibinc.h"
9# include "common/Types.h"
10
14namespace VIC20
15{
16 void menu();
17
18 void openCRDB();
19 void closeCRDB();
20
21 void cartOn();
22 void cartOff();
23
24 void printHeader();
25
26 uint8_t readData(uint16_t addr);
27 void readROM();
28 void setROMSize();
29 void checkStatus();
30 void setROMMap();
31 void setCart();
32} /* namespace OSCR::Cores::VIC20 */
33
34# endif /* HAS_VIC20 */
35#endif /* OSCR_CORE_VIC20_H_ */
System core for the Commodore VIC-20.
Definition VIC20.h:15