mirror of
https://github.com/dingusdev/dingusppc.git
synced 2025-08-15 09:27:27 +00:00
Fixing compilation files and changed the authorship credits
This commit is contained in:
@@ -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
|
||||
)
|
||||
|
||||
|
@@ -45,21 +45,21 @@
|
||||
<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="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="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" />
|
||||
@@ -67,8 +67,6 @@
|
||||
<Unit filename="ppcmemory.cpp" />
|
||||
<Unit filename="ppcmemory.h" />
|
||||
<Unit filename="ppcopcodes.cpp" />
|
||||
<Unit filename="viacuda.cpp" />
|
||||
<Unit filename="viacuda.h" />
|
||||
<Extensions>
|
||||
<code_completion />
|
||||
<envvars />
|
||||
|
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)
|
||||
|
Reference in New Issue
Block a user