2011-09-13 17:50:18 +03:00
|
|
|
#ifndef _memorymanip__hpp__included__
|
|
|
|
#define _memorymanip__hpp__included__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <list>
|
|
|
|
#include <vector>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <stdexcept>
|
2012-10-24 22:03:08 +03:00
|
|
|
#include "library/memoryspace.hpp"
|
2011-09-13 17:50:18 +03:00
|
|
|
|
2012-10-24 22:03:08 +03:00
|
|
|
extern memory_space lsnes_memory;
|
2011-09-13 17:50:18 +03:00
|
|
|
|
|
|
|
void refresh_cart_mappings() throw(std::bad_alloc);
|
|
|
|
|
|
|
|
#endif
|