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.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef Analyser_Static_Amiga_Target_h
|
|
|
|
#define Analyser_Static_Amiga_Target_h
|
|
|
|
|
|
|
|
#include "../../../Reflection/Struct.hpp"
|
|
|
|
#include "../StaticAnalyser.hpp"
|
|
|
|
|
|
|
|
namespace Analyser {
|
|
|
|
namespace Static {
|
|
|
|
namespace Amiga {
|
|
|
|
|
|
|
|
struct Target: public Analyser::Static::Target, public Reflection::StructImpl<Target> {
|
2021-12-22 20:30:19 +00:00
|
|
|
ReflectableEnum(ChipRAM,
|
|
|
|
FiveHundredAndTwelveKilobytes,
|
|
|
|
OneMegabyte,
|
|
|
|
TwoMegabytes);
|
2021-12-22 20:17:11 +00:00
|
|
|
ReflectableEnum(FastRAM,
|
|
|
|
None,
|
|
|
|
OneMegabyte,
|
|
|
|
TwoMegabytes,
|
|
|
|
FourMegabytes,
|
|
|
|
EightMegabytes);
|
|
|
|
|
2021-12-22 20:30:19 +00:00
|
|
|
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);
|
2021-12-22 20:30:19 +00:00
|
|
|
DeclareField(chip_ram);
|
2021-12-22 20:17:11 +00:00
|
|
|
AnnounceEnum(FastRAM);
|
2021-12-22 20:30:19 +00:00
|
|
|
AnnounceEnum(ChipRAM);
|
2021-12-22 20:17:11 +00:00
|
|
|
}
|
|
|
|
}
|
2021-07-17 00:15:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* Analyser_Static_Amiga_Target_h */
|