2020-01-05 17:38:32 +00:00
|
|
|
//DingusPPC
|
|
|
|
//Written by divingkatae and maximum
|
|
|
|
//(c)2018-20 (theweirdo) spatium
|
2019-07-02 02:15:33 +00:00
|
|
|
//Please ask for permission
|
|
|
|
//if you want to distribute this.
|
2020-01-05 17:38:32 +00:00
|
|
|
//(divingkatae#1017 or powermax#2286 on Discord)
|
2019-07-02 02:15:33 +00:00
|
|
|
|
|
|
|
// The uniquely Gekko opcodes for the processor - ppcgekkoopcodes.cpp
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <stdio.h>
|
2019-12-27 19:10:36 +00:00
|
|
|
#include "ppcemu.h"
|
2019-07-02 02:15:33 +00:00
|
|
|
|
|
|
|
void ppc_psq_l(){
|
|
|
|
printf("Hello. There's no GameCube emulation...yet. Goodbye.");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ppc_psq_lu(){
|
|
|
|
printf("Hello. There's no GameCube emulation...yet. Goodbye.");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ppc_psq_st(){
|
|
|
|
printf("Hello. There's no GameCube emulation...yet. Goodbye.");
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ppc_psq_stu(){
|
|
|
|
printf("Hello. There's no GameCube emulation...yet. Goodbye.");
|
|
|
|
exit(0);
|
|
|
|
}
|