1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-29 00:29:34 +00:00

Relocate using.

This commit is contained in:
Thomas Harte 2024-01-04 10:28:41 -05:00
parent c151a73059
commit 4affbe7556
2 changed files with 1 additions and 3 deletions

View File

@ -9,6 +9,7 @@
#include "MemoryMap.hpp"
using namespace Apple::IIgs;
using PagingType = Apple::II::PagingType;
void MemoryMap::set_storage(std::vector<uint8_t> &ram, std::vector<uint8_t> &rom) {
// Keep a pointer for later; also note the proper RAM offset.

View File

@ -19,9 +19,6 @@
namespace Apple::IIgs {
class MemoryMap {
private:
using PagingType = Apple::II::PagingType;
public:
// MARK: - Initial construction and configuration.