mirror of
https://github.com/dingusdev/dingusppc.git
synced 2024-11-18 22:05:51 +00:00
33 lines
772 B
C++
33 lines
772 B
C++
//DingusPPC
|
|
//Written by divingkatae and maximum
|
|
//(c)2018-20 (theweirdo) spatium
|
|
//Please ask for permission
|
|
//if you want to distribute this.
|
|
//(divingkatae#1017 or powermax#2286 on Discord)
|
|
|
|
// The uniquely Gekko opcodes for the processor - ppcgekkoopcodes.cpp
|
|
|
|
#include <iostream>
|
|
#include <stdio.h>
|
|
#include "ppcemu.h"
|
|
|
|
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);
|
|
}
|