mirror of
https://github.com/devinacker/bsnes-plus.git
synced 2025-04-02 10:52:46 -04:00
25 lines
432 B
C++
25 lines
432 B
C++
#ifndef GAMBATTE_PAKINFO_H
|
|
#define GAMBATTE_PAKINFO_H
|
|
|
|
#include <string>
|
|
|
|
namespace gambatte {
|
|
|
|
class PakInfo {
|
|
public:
|
|
PakInfo();
|
|
PakInfo(bool multipak, unsigned rombanks, unsigned char const romheader[]);
|
|
bool headerChecksumOk() const;
|
|
std::string const mbc() const;
|
|
unsigned rambanks() const;
|
|
unsigned rombanks() const;
|
|
|
|
private:
|
|
unsigned short flags_;
|
|
unsigned short rombanks_;
|
|
unsigned char h144x_[12];
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|