1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-07-25 13:24:23 +00:00

Wires up all new machine options.

This commit is contained in:
Thomas Harte
2020-06-18 23:34:37 -04:00
parent c5cad865d7
commit 4fdbe578cc
3 changed files with 217 additions and 1 deletions

View File

@@ -70,6 +70,21 @@ class MainWindow : public QMainWindow, public Outputs::Speaker::Speaker::Delegat
void open();
void newFile();
void about();
void startMachine();
private:
void start_appleII();
void start_amstradCPC();
void start_atariST();
void start_electron();
void start_macintosh();
void start_msx();
void start_oric();
void start_vic20();
void start_zx80();
void start_zx81();
void launchTarget(std::unique_ptr<Analyser::Static::Target> &&);
};
#endif // MAINWINDOW_H