1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-08 10:52:58 +00:00
CLK/Analyser/Static/Amiga/Target.hpp

42 lines
854 B
C++
Raw Normal View History

2021-07-17 00:15:36 +00:00
//
// Target.hpp
// Clock Signal
//
// Created by Thomas Harte on 16/07/2021.
// Copyright © 2021 Thomas Harte. All rights reserved.
//
#pragma once
2021-07-17 00:15:36 +00:00
#include "../../../Reflection/Struct.hpp"
#include "../StaticAnalyser.hpp"
2023-05-10 21:02:18 +00:00
namespace Analyser::Static::Amiga {
2021-07-17 00:15:36 +00:00
struct Target: public Analyser::Static::Target, public Reflection::StructImpl<Target> {
ReflectableEnum(ChipRAM,
FiveHundredAndTwelveKilobytes,
OneMegabyte,
TwoMegabytes);
2021-12-22 20:17:11 +00:00
ReflectableEnum(FastRAM,
None,
OneMegabyte,
TwoMegabytes,
FourMegabytes,
EightMegabytes);
ChipRAM chip_ram = ChipRAM::FiveHundredAndTwelveKilobytes;
FastRAM fast_ram = FastRAM::EightMegabytes;
2021-12-22 20:17:11 +00:00
Target() : Analyser::Static::Target(Machine::Amiga) {
if(needs_declare()) {
DeclareField(fast_ram);
DeclareField(chip_ram);
2021-12-22 20:17:11 +00:00
AnnounceEnum(FastRAM);
AnnounceEnum(ChipRAM);
2021-12-22 20:17:11 +00:00
}
}
2021-07-17 00:15:36 +00:00
};
}