2018-03-09 21:07:29 +00:00
|
|
|
//
|
|
|
|
// Target.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 09/03/2018.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
2018-03-09 21:07:29 +00:00
|
|
|
//
|
|
|
|
|
2019-10-04 02:10:10 +00:00
|
|
|
#ifndef Analyser_Static_Atari2600_Target_h
|
|
|
|
#define Analyser_Static_Atari2600_Target_h
|
2018-03-09 21:07:29 +00:00
|
|
|
|
|
|
|
#include "../StaticAnalyser.hpp"
|
|
|
|
|
|
|
|
namespace Analyser {
|
|
|
|
namespace Static {
|
2019-10-04 02:10:10 +00:00
|
|
|
namespace Atari2600 {
|
2018-03-09 21:07:29 +00:00
|
|
|
|
|
|
|
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?
|
2018-03-23 01:58:42 +00:00
|
|
|
PagingModel paging_model = PagingModel::None;
|
|
|
|
bool uses_superchip = false;
|
2020-03-15 04:13:38 +00:00
|
|
|
|
|
|
|
Target() : Analyser::Static::Target(Machine::Atari2600) {}
|
2018-03-09 21:07:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-03 02:42:41 +00:00
|
|
|
#endif /* Analyser_Static_Atari_Target_h */
|