mirror of
https://github.com/dingusdev/dingusppc.git
synced 2025-01-11 05:29:43 +00:00
Fixing compilation files and changed the authorship credits
This commit is contained in:
parent
e50f4396db
commit
e7564ab0a5
@ -8,32 +8,31 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||
set(CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-c -Wall -O3 -s")
|
||||
|
||||
set(SOURCE_FILES
|
||||
macioserial.cpp
|
||||
macscsi.cpp
|
||||
macswim3.cpp
|
||||
mpc106.cpp
|
||||
openpic.cpp
|
||||
devices/heathrow.cpp
|
||||
devices/memctrlbase.cpp
|
||||
devices/mpc106.cpp
|
||||
devices/viacuda.cpp
|
||||
poweropcodes.cpp
|
||||
ppcfpopcodes.cpp
|
||||
ppcgekkoopcodes.cpp
|
||||
ppcmemory.cpp
|
||||
ppcopcodes.cpp
|
||||
viacuda.cpp
|
||||
main.cpp
|
||||
davbus.cpp
|
||||
debugger.cpp
|
||||
)
|
||||
|
||||
set(HEADER_FILES
|
||||
macioserial.h
|
||||
macscsi.h
|
||||
macswim3.h
|
||||
mpc106.h
|
||||
openpic.h
|
||||
devices/heathrow.cpp
|
||||
devices/machineid.h
|
||||
devices/macio.h
|
||||
devices/memctrlbase.h
|
||||
devices/mmiodevice.h
|
||||
devices/mpc106.h
|
||||
devices/pcidevice.h
|
||||
devices/pcihost.h
|
||||
devices/viacuda.h
|
||||
ppcemumain.h
|
||||
ppcmemory.h
|
||||
viacuda.h
|
||||
davbus.h
|
||||
debugger.h
|
||||
)
|
||||
|
||||
|
156
dingusppc.cbp
156
dingusppc.cbp
@ -1,79 +1,77 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||
<CodeBlocks_project_file>
|
||||
<FileVersion major="1" minor="6" />
|
||||
<Project>
|
||||
<Option title="dingusppc" />
|
||||
<Option makefile="makefile" />
|
||||
<Option pch_mode="2" />
|
||||
<Option compiler="gcc" />
|
||||
<Build>
|
||||
<Target title="Debug">
|
||||
<Option output="bin/Debug/dingusppc" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj/Debug/" />
|
||||
<Option type="1" />
|
||||
<Option compiler="gcc" />
|
||||
<Compiler>
|
||||
<Add option="-Weffc++" />
|
||||
<Add option="-Wall" />
|
||||
<Add option="-std=c++11" />
|
||||
<Add option="-m32" />
|
||||
<Add option="-g" />
|
||||
</Compiler>
|
||||
<Linker>
|
||||
<Add option="-m32" />
|
||||
</Linker>
|
||||
</Target>
|
||||
<Target title="Release">
|
||||
<Option output="bin/Release/dingusppc" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj/Release/" />
|
||||
<Option type="1" />
|
||||
<Option compiler="gcc" />
|
||||
<Compiler>
|
||||
<Add option="-march=core2" />
|
||||
<Add option="-Os" />
|
||||
<Add option="-std=c++14" />
|
||||
<Add option="-m32" />
|
||||
</Compiler>
|
||||
<Linker>
|
||||
<Add option="-s" />
|
||||
<Add option="-m32" />
|
||||
</Linker>
|
||||
</Target>
|
||||
</Build>
|
||||
<Compiler>
|
||||
<Add option="-Wall" />
|
||||
<Add option="-std=c++11" />
|
||||
<Add option="-fexceptions" />
|
||||
</Compiler>
|
||||
<Unit filename="davbus.cpp" />
|
||||
<Unit filename="davbus.h" />
|
||||
<Unit filename="debugger.cpp" />
|
||||
<Unit filename="debugger.h" />
|
||||
<Unit filename="macioserial.cpp" />
|
||||
<Unit filename="macioserial.h" />
|
||||
<Unit filename="macscsi.cpp" />
|
||||
<Unit filename="macscsi.h" />
|
||||
<Unit filename="macswim3.cpp" />
|
||||
<Unit filename="macswim3.h" />
|
||||
<Unit filename="main.cpp" />
|
||||
<Unit filename="mpc106.cpp" />
|
||||
<Unit filename="mpc106.h" />
|
||||
<Unit filename="openpic.cpp" />
|
||||
<Unit filename="openpic.h" />
|
||||
<Unit filename="poweropcodes.cpp" />
|
||||
<Unit filename="ppcemumain.h" />
|
||||
<Unit filename="ppcfpopcodes.cpp" />
|
||||
<Unit filename="ppcgekkoopcodes.cpp" />
|
||||
<Unit filename="ppcmemory.cpp" />
|
||||
<Unit filename="ppcmemory.h" />
|
||||
<Unit filename="ppcopcodes.cpp" />
|
||||
<Unit filename="viacuda.cpp" />
|
||||
<Unit filename="viacuda.h" />
|
||||
<Extensions>
|
||||
<code_completion />
|
||||
<envvars />
|
||||
<debugger />
|
||||
<lib_finder disable_auto="1" />
|
||||
</Extensions>
|
||||
</Project>
|
||||
</CodeBlocks_project_file>
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||
<CodeBlocks_project_file>
|
||||
<FileVersion major="1" minor="6" />
|
||||
<Project>
|
||||
<Option title="dingusppc" />
|
||||
<Option makefile="makefile" />
|
||||
<Option pch_mode="2" />
|
||||
<Option compiler="gcc" />
|
||||
<Build>
|
||||
<Target title="Debug">
|
||||
<Option output="bin/Debug/dingusppc" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj/Debug/" />
|
||||
<Option type="1" />
|
||||
<Option compiler="gcc" />
|
||||
<Compiler>
|
||||
<Add option="-Weffc++" />
|
||||
<Add option="-Wall" />
|
||||
<Add option="-std=c++11" />
|
||||
<Add option="-m32" />
|
||||
<Add option="-g" />
|
||||
</Compiler>
|
||||
<Linker>
|
||||
<Add option="-m32" />
|
||||
</Linker>
|
||||
</Target>
|
||||
<Target title="Release">
|
||||
<Option output="bin/Release/dingusppc" prefix_auto="1" extension_auto="1" />
|
||||
<Option object_output="obj/Release/" />
|
||||
<Option type="1" />
|
||||
<Option compiler="gcc" />
|
||||
<Compiler>
|
||||
<Add option="-march=core2" />
|
||||
<Add option="-Os" />
|
||||
<Add option="-std=c++14" />
|
||||
<Add option="-m32" />
|
||||
</Compiler>
|
||||
<Linker>
|
||||
<Add option="-s" />
|
||||
<Add option="-m32" />
|
||||
</Linker>
|
||||
</Target>
|
||||
</Build>
|
||||
<Compiler>
|
||||
<Add option="-Wall" />
|
||||
<Add option="-std=c++11" />
|
||||
<Add option="-fexceptions" />
|
||||
</Compiler>
|
||||
<Unit filename="debugger.cpp" />
|
||||
<Unit filename="debugger.h" />
|
||||
<Unit filename="devices/heathrow.cpp" />
|
||||
<Unit filename="devices/machineid.h" />
|
||||
<Unit filename="devices/macio.h" />
|
||||
<Unit filename="devices/memctrlbase.cpp" />
|
||||
<Unit filename="devices/memctrlbase.h" />
|
||||
<Unit filename="devices/mmiodevice.h" />
|
||||
<Unit filename="devices/mpc106.cpp" />
|
||||
<Unit filename="devices/mpc106.h" />
|
||||
<Unit filename="devices/pcidevice.h" />
|
||||
<Unit filename="devices/pcihost.h" />
|
||||
<Unit filename="devices/viacuda.cpp" />
|
||||
<Unit filename="devices/viacuda.h" />
|
||||
<Unit filename="main.cpp" />
|
||||
<Unit filename="poweropcodes.cpp" />
|
||||
<Unit filename="ppcemumain.h" />
|
||||
<Unit filename="ppcfpopcodes.cpp" />
|
||||
<Unit filename="ppcgekkoopcodes.cpp" />
|
||||
<Unit filename="ppcmemory.cpp" />
|
||||
<Unit filename="ppcmemory.h" />
|
||||
<Unit filename="ppcopcodes.cpp" />
|
||||
<Extensions>
|
||||
<code_completion />
|
||||
<envvars />
|
||||
<debugger />
|
||||
<lib_finder disable_auto="1" />
|
||||
</Extensions>
|
||||
</Project>
|
||||
</CodeBlocks_project_file>
|
||||
|
5
main.cpp
5
main.cpp
@ -1,6 +1,6 @@
|
||||
//DingusPPC - Prototype 5bf2
|
||||
//Written by divingkatae
|
||||
//(c)2018-20 (theweirdo)
|
||||
//Written by divingkatae and maximum
|
||||
//(c)2018-20 (theweirdo) spatium
|
||||
//Please ask for permission
|
||||
//if you want to distribute this.
|
||||
//(divingkatae#1017 on Discord)
|
||||
@ -10,6 +10,7 @@
|
||||
|
||||
#include <iostream>
|
||||
#include <map>
|
||||
#include <cassert>
|
||||
#include <cstring>
|
||||
#include <cinttypes>
|
||||
#include <array>
|
||||
|
@ -1,6 +1,6 @@
|
||||
//DingusPPC - Prototype 5bf2
|
||||
//Written by divingkatae
|
||||
//(c)2018-20 (theweirdo)
|
||||
//Written by divingkatae and maximum
|
||||
//(c)2018-20 (theweirdo) spatium
|
||||
//Please ask for permission
|
||||
//if you want to distribute this.
|
||||
//(divingkatae#1017 on Discord)
|
||||
|
@ -1,6 +1,6 @@
|
||||
//DingusPPC - Prototype 5bf2
|
||||
//Written by divingkatae
|
||||
//(c)2018-20 (theweirdo)
|
||||
//Written by divingkatae and maximum
|
||||
//(c)2018-20 (theweirdo) spatium
|
||||
//Please ask for permission
|
||||
//if you want to distribute this.
|
||||
//(divingkatae#1017 on Discord)
|
||||
|
@ -1,6 +1,6 @@
|
||||
//DingusPPC - Prototype 5bf2
|
||||
//Written by divingkatae
|
||||
//(c)2018-20 (theweirdo)
|
||||
//Written by divingkatae and maximum
|
||||
//(c)2018-20 (theweirdo) spatium
|
||||
//Please ask for permission
|
||||
//if you want to distribute this.
|
||||
//(divingkatae#1017 on Discord)
|
||||
|
@ -1,6 +1,6 @@
|
||||
//DingusPPC - Prototype 5bf2
|
||||
//Written by divingkatae
|
||||
//(c)2018-20 (theweirdo)
|
||||
//Written by divingkatae and maximum
|
||||
//(c)2018-20 (theweirdo) spatium
|
||||
//Please ask for permission
|
||||
//if you want to distribute this.
|
||||
//(divingkatae#1017 on Discord)
|
||||
|
@ -1,6 +1,6 @@
|
||||
//DingusPPC - Prototype 5bf2
|
||||
//Written by divingkatae
|
||||
//(c)2018-20 (theweirdo)
|
||||
//Written by divingkatae and maximum
|
||||
//(c)2018-20 (theweirdo) spatium
|
||||
//Please ask for permission
|
||||
//if you want to distribute this.
|
||||
//(divingkatae#1017 on Discord)
|
||||
|
Loading…
x
Reference in New Issue
Block a user