├── .gitignore ├── LICENSE ├── README.md ├── WindCore ├── WindCore.pro ├── arm710.cpp ├── arm710.h ├── clps7111.cpp ├── clps7111.h ├── clps7111_defs.h ├── clps7600.cpp ├── clps7600.h ├── common.h ├── decoder-arm.c ├── decoder-inlines.h ├── decoder.c ├── decoder.h ├── emitter-arm.h ├── emitter-inlines.h ├── emubase.cpp ├── emubase.h ├── etna.cpp ├── etna.h ├── hardware.h ├── isa-arm.h ├── isa-inlines.h ├── macros.h ├── wind_defs.h ├── windermere.cpp └── windermere.h ├── WindEmu.pro ├── WindQt ├── WindQt.pro ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── pdascreenwindow.cpp └── pdascreenwindow.h └── WindWasm ├── build.sh ├── cover.svg ├── main.cpp └── shell.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/README.md -------------------------------------------------------------------------------- /WindCore/WindCore.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/WindCore.pro -------------------------------------------------------------------------------- /WindCore/arm710.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/arm710.cpp -------------------------------------------------------------------------------- /WindCore/arm710.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/arm710.h -------------------------------------------------------------------------------- /WindCore/clps7111.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/clps7111.cpp -------------------------------------------------------------------------------- /WindCore/clps7111.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/clps7111.h -------------------------------------------------------------------------------- /WindCore/clps7111_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/clps7111_defs.h -------------------------------------------------------------------------------- /WindCore/clps7600.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/clps7600.cpp -------------------------------------------------------------------------------- /WindCore/clps7600.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/clps7600.h -------------------------------------------------------------------------------- /WindCore/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/common.h -------------------------------------------------------------------------------- /WindCore/decoder-arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/decoder-arm.c -------------------------------------------------------------------------------- /WindCore/decoder-inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/decoder-inlines.h -------------------------------------------------------------------------------- /WindCore/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/decoder.c -------------------------------------------------------------------------------- /WindCore/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/decoder.h -------------------------------------------------------------------------------- /WindCore/emitter-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/emitter-arm.h -------------------------------------------------------------------------------- /WindCore/emitter-inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/emitter-inlines.h -------------------------------------------------------------------------------- /WindCore/emubase.cpp: -------------------------------------------------------------------------------- 1 | #include "emubase.h" 2 | -------------------------------------------------------------------------------- /WindCore/emubase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/emubase.h -------------------------------------------------------------------------------- /WindCore/etna.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/etna.cpp -------------------------------------------------------------------------------- /WindCore/etna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/etna.h -------------------------------------------------------------------------------- /WindCore/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/hardware.h -------------------------------------------------------------------------------- /WindCore/isa-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/isa-arm.h -------------------------------------------------------------------------------- /WindCore/isa-inlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/isa-inlines.h -------------------------------------------------------------------------------- /WindCore/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/macros.h -------------------------------------------------------------------------------- /WindCore/wind_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/wind_defs.h -------------------------------------------------------------------------------- /WindCore/windermere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/windermere.cpp -------------------------------------------------------------------------------- /WindCore/windermere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindCore/windermere.h -------------------------------------------------------------------------------- /WindEmu.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindEmu.pro -------------------------------------------------------------------------------- /WindQt/WindQt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindQt/WindQt.pro -------------------------------------------------------------------------------- /WindQt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindQt/main.cpp -------------------------------------------------------------------------------- /WindQt/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindQt/mainwindow.cpp -------------------------------------------------------------------------------- /WindQt/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindQt/mainwindow.h -------------------------------------------------------------------------------- /WindQt/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindQt/mainwindow.ui -------------------------------------------------------------------------------- /WindQt/pdascreenwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindQt/pdascreenwindow.cpp -------------------------------------------------------------------------------- /WindQt/pdascreenwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindQt/pdascreenwindow.h -------------------------------------------------------------------------------- /WindWasm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindWasm/build.sh -------------------------------------------------------------------------------- /WindWasm/cover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindWasm/cover.svg -------------------------------------------------------------------------------- /WindWasm/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindWasm/main.cpp -------------------------------------------------------------------------------- /WindWasm/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Treeki/WindEmu/HEAD/WindWasm/shell.html --------------------------------------------------------------------------------