25 lines
482 B
C++
25 lines
482 B
C++
#ifndef _memorymanip__hpp__included__
|
|
#define _memorymanip__hpp__included__
|
|
|
|
#include <string>
|
|
#include <list>
|
|
#include <vector>
|
|
#include <cstdint>
|
|
#include <stdexcept>
|
|
|
|
class memory_space;
|
|
class movie_logic;
|
|
class loaded_rom;
|
|
|
|
class cart_mappings_refresher
|
|
{
|
|
public:
|
|
cart_mappings_refresher(memory_space& _mspace, movie_logic& _mlogic, loaded_rom& _rom);
|
|
void operator()() throw(std::bad_alloc);
|
|
private:
|
|
memory_space& mspace;
|
|
movie_logic& mlogic;
|
|
loaded_rom& rom;
|
|
};
|
|
|
|
#endif
|