1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-08-19 21:29:04 +00:00
CLK/Machines/Apple/AppleII/MemorySwitches.hpp

21 lines
296 B
C++
Raw Normal View History

//
// MemorySwitches.hpp
// Clock Signal
//
// Created by Thomas Harte on 27/06/2022.
// Copyright © 2022 Thomas Harte. All rights reserved.
//
#pragma once
2023-05-10 21:02:18 +00:00
namespace Apple::II {
enum PagingType: int {
Main = 1 << 0,
ZeroPage = 1 << 1,
CardArea = 1 << 2,
LanguageCard = 1 << 3,
};
}