1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-12 09:25:19 +00:00

Fix tests.

This commit is contained in:
Thomas Harte
2022-09-13 16:33:44 -04:00
parent 36c3cb1f70
commit 0f017302ce

View File

@@ -11,7 +11,10 @@
#include "../../../Machines/Apple/AppleIIgs/MemoryMap.hpp" #include "../../../Machines/Apple/AppleIIgs/MemoryMap.hpp"
namespace { namespace {
using MemoryMap = Apple::IIgs::MemoryMap; // Test the ROM03-era mapping hardware.
struct MemoryMap: public Apple::IIgs::MemoryMap {
MemoryMap() : Apple::IIgs::MemoryMap(true) {}
};
} }
@interface IIgsMemoryMapTests : XCTestCase @interface IIgsMemoryMapTests : XCTestCase