Mesen-X/Core/iNesLoader.h

14 lines
286 B
C
Raw Normal View History

2016-01-28 20:47:16 -05:00
#pragma once
#include "stdafx.h"
#include <unordered_map>
#include "RomData.h"
2016-01-28 20:47:16 -05:00
class iNesLoader
{
private:
static std::unordered_map<uint32_t, uint8_t> _mapperByCrc;
static std::unordered_map<uint32_t, uint8_t> _submapperByCrc;
public:
RomData LoadRom(vector<uint8_t>& romFile);
2016-01-28 20:47:16 -05:00
};