mirror of
https://github.com/mkwong98/HDNes.git
synced 2025-04-02 10:32:07 -04:00
39 lines
571 B
C++
39 lines
571 B
C++
#include "mapper001.h"
|
|
|
|
mapper001::mapper001()
|
|
{
|
|
//ctor
|
|
}
|
|
|
|
mapper001::~mapper001()
|
|
{
|
|
//dtor
|
|
}
|
|
|
|
Uint8 mapper001::readMapperPRGData(Uint16 address){
|
|
}
|
|
|
|
void mapper001::writeMapperPRGData(Uint16 address, Uint8 value){
|
|
}
|
|
|
|
Uint8 mapper001::readMapperCHRData(Uint16 address){
|
|
}
|
|
|
|
void mapper001::writeMapperCHRData(Uint16 address, Uint8 value){
|
|
}
|
|
|
|
|
|
void mapper001::reset(){
|
|
}
|
|
|
|
void mapper001::saveState(fstream* statefile){
|
|
}
|
|
|
|
void mapper001::loadState(fstream* statefile){
|
|
}
|
|
|
|
void mapper001::init(){
|
|
}
|
|
|
|
void mapper001::init2(){
|
|
}
|