| 9 | using namespace tt::hal; |
| 10 | |
| 11 | static std::vector<std::shared_ptr<tt::hal::Device>> createDevices() { |
| 12 | return { |
| 13 | std::make_shared<SdlDisplay>(), |
| 14 | std::make_shared<SdlKeyboard>(), |
| 15 | std::make_shared<SimulatorPower>(), |
| 16 | }; |
| 17 | } |
| 18 | |
| 19 | extern const Configuration hardwareConfiguration = { |
| 20 | .initBoot = nullptr, |
nothing calls this directly
no outgoing calls
no test coverage detected