mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
44 lines
734 B
C++
44 lines
734 B
C++
//
|
|
// Target.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 09/03/2018.
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Analyser_Static_Atari_Target_h
|
|
#define Analyser_Static_Atari_Target_h
|
|
|
|
#include "../StaticAnalyser.hpp"
|
|
|
|
namespace Analyser {
|
|
namespace Static {
|
|
namespace Atari {
|
|
|
|
struct Target: public ::Analyser::Static::Target {
|
|
enum class PagingModel {
|
|
None,
|
|
CommaVid,
|
|
Atari8k,
|
|
Atari16k,
|
|
Atari32k,
|
|
ActivisionStack,
|
|
ParkerBros,
|
|
Tigervision,
|
|
CBSRamPlus,
|
|
MNetwork,
|
|
MegaBoy,
|
|
Pitfall2
|
|
};
|
|
|
|
// TODO: shouldn't these be properties of the cartridge?
|
|
PagingModel paging_model = PagingModel::None;
|
|
bool uses_superchip = false;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* Analyser_Static_Atari_Target_h */
|