mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
00e7958a97
Thereby fixes various minor segments of Codemasters games.
47 lines
769 B
C++
47 lines
769 B
C++
//
|
|
// Target.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 23/09/2018.
|
|
// Copyright © 2018 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Analyser_Static_Sega_Target_h
|
|
#define Analyser_Static_Sega_Target_h
|
|
|
|
namespace Analyser {
|
|
namespace Static {
|
|
namespace Sega {
|
|
|
|
struct Target: public ::Analyser::Static::Target {
|
|
enum class Model {
|
|
SG1000,
|
|
MasterSystem,
|
|
MasterSystem2,
|
|
};
|
|
|
|
enum class Region {
|
|
Japan,
|
|
USA,
|
|
Europe,
|
|
Brazil
|
|
};
|
|
|
|
enum class PagingScheme {
|
|
Sega,
|
|
Codemasters
|
|
};
|
|
|
|
Model model = Model::MasterSystem;
|
|
Region region = Region::Japan;
|
|
PagingScheme paging_scheme = PagingScheme::Sega;
|
|
};
|
|
|
|
#define is_master_system(v) v >= Analyser::Static::Sega::Target::Model::MasterSystem
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* Analyser_Static_Sega_Target_h */
|