mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-07 19:05:38 +00:00
69f520428d
Which has implied getting much more specific about MSX disk drive attachment, and has prompted an excuse to offer the ZX80 with the ZX81 ROM.
26 lines
441 B
C++
26 lines
441 B
C++
//
|
|
// Target.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 09/03/2018.
|
|
// Copyright © 2018 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Analyser_Static_Oric_Target_h
|
|
#define Analyser_Static_Oric_Target_h
|
|
|
|
namespace Analyser {
|
|
namespace Static {
|
|
namespace Oric {
|
|
|
|
struct Target: public ::Analyser::Static::Target {
|
|
bool use_atmos_rom = false;
|
|
bool has_microdrive = false;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* Analyser_Static_Oric_Target_h */
|