spo/simulator_SIC_XE/gui/qt/main.cpp
2025-12-07 11:27:01 +01:00

14 lines
No EOL
282 B
C++

#include <QApplication>
#include "mainwindow.h"
#include "../../include/opcode.h"
int main(int argc, char **argv) {
loadInstructionSet();
qputenv("QT_QPA_PLATFORM", "xcb");
QApplication app(argc, argv);
MainWindow w;
w.show();
return app.exec();
}