]> localhost Git - WindEmu.git/commitdiff
Move Psion-specific files into their own subdirectories
authorGeorge Wright <gw@gwright.org.uk>
Thu, 25 Jun 2026 01:01:20 +0000 (18:01 -0700)
committerGeorge Wright <gw@gwright.org.uk>
Fri, 26 Jun 2026 00:54:29 +0000 (17:54 -0700)
13 files changed:
WindCore/WindCore.pro
WindCore/osaris/clps7111.cpp [moved from WindCore/clps7111.cpp with 100% similarity]
WindCore/osaris/clps7111.h [moved from WindCore/clps7111.h with 99% similarity]
WindCore/osaris/clps7111_defs.h [moved from WindCore/clps7111_defs.h with 100% similarity]
WindCore/osaris/clps7600.cpp [moved from WindCore/clps7600.cpp with 100% similarity]
WindCore/osaris/clps7600.h [moved from WindCore/clps7600.h with 100% similarity]
WindCore/series5mx/etna.cpp [moved from WindCore/etna.cpp with 100% similarity]
WindCore/series5mx/etna.h [moved from WindCore/etna.h with 100% similarity]
WindCore/series5mx/wind_defs.h [moved from WindCore/wind_defs.h with 100% similarity]
WindCore/series5mx/windermere.cpp [moved from WindCore/windermere.cpp with 100% similarity]
WindCore/series5mx/windermere.h [moved from WindCore/windermere.h with 100% similarity]
WindQt/main.cpp
WindQt/mainwindow.cpp

index 9353d7e17f3ec276407fdbd117edd66c0fd7c7b0..7d20df8abb22d329b3c12e2256d21c131d9104a1 100644 (file)
@@ -24,23 +24,22 @@ DEFINES += QT_DEPRECATED_WARNINGS
 
 SOURCES += \
     arm710.cpp \
-    clps7111.cpp \
-    clps7600.cpp \
     emubase.cpp \
-    etna.cpp \
     decoder.c \
-    decoder-arm.c \
-    windermere.cpp
+    decoder-arm.c
+
+SOURCES += \
+    osaris/clps7111.cpp \
+    osaris/clps7600.cpp
+
+SOURCES += \
+    series5mx/etna.cpp \
+    series5mx/windermere.cpp
 
 HEADERS += \
     arm710.h \
-    clps7111.h \
-    clps7111_defs.h \
-    clps7600.h \
     emubase.h \
-    etna.h \
     hardware.h \
-    wind_defs.h \
     macros.h \
     isa-inlines.h \
     isa-arm.h \
@@ -48,9 +47,19 @@ HEADERS += \
     emitter-arm.h \
     decoder.h \
     decoder-inlines.h \
-    common.h \
-    windermere.h
+    common.h
+    
 unix {
     target.path = /usr/lib
     INSTALLS += target
 }
+
+HEADERS += \
+    osaris/clps7111.h \
+    osaris/clps7111_defs.h \
+    osaris/clps7600.h
+
+HEADERS += \
+    series5mx/etna.h \
+    series5mx/wind_defs.h \
+    series5mx/windermere.h
\ No newline at end of file
similarity index 99%
rename from WindCore/clps7111.h
rename to WindCore/osaris/clps7111.h
index ccb5b5101d83cee2ce55f86f8931a1b5d6b7f68b..08b01eaac1171c12a08c95fd71ff05440f4bedac 100644 (file)
@@ -2,7 +2,6 @@
 #include "clps7111_defs.h"
 #include "clps7600.h"
 #include "emubase.h"
-#include "etna.h"
 #include "hardware.h"
 
 namespace CLPS7111 {
similarity index 100%
rename from WindCore/etna.h
rename to WindCore/series5mx/etna.h
index d26184cdb2a9a17dcc29e30257d89c34dafa3912..a655bb3ddf2e1639afdcfdcda88949e949ff0408 100644 (file)
@@ -1,5 +1,5 @@
-#include "../WindCore/clps7111.h"
-#include "../WindCore/windermere.h"
+#include "../WindCore/osaris/clps7111.h"
+#include "../WindCore/series5mx/windermere.h"
 #include "mainwindow.h"
 #include <QApplication>
 #include <QFileDialog>
index 33709f62e8ccf22cf9999c5555eabe82c7c5116f..684654dd19824c7b07e89b5c742b3c9b7962b2e1 100644 (file)
@@ -1,6 +1,5 @@
 #include "mainwindow.h"
 #include "../WindCore/decoder.h"
-#include "clps7111.h"
 #include "ui_mainwindow.h"
 #include <QTimer>