mirror of
https://github.com/open-goal/jak-project
synced 2026-08-17 21:43:27 -04:00
4b1b7e9507
* add some dma * clean up * add progress script and make codacy happy
62 lines
774 B
C++
62 lines
774 B
C++
#include <stdexcept>
|
|
#include <cassert>
|
|
#include "stubs.h"
|
|
|
|
namespace ee {
|
|
int scePadPortOpen(int port, int slot, void* data) {
|
|
(void)port;
|
|
(void)slot;
|
|
(void)data;
|
|
assert(false);
|
|
return 0;
|
|
}
|
|
|
|
void sceGsSyncV() {
|
|
assert(false);
|
|
}
|
|
|
|
void sceGsSyncPath() {
|
|
assert(false);
|
|
}
|
|
|
|
void sceGsResetGraph() {
|
|
assert(false);
|
|
}
|
|
|
|
void sceGsPutIMR() {
|
|
assert(false);
|
|
}
|
|
|
|
void sceGsGetIMR() {
|
|
assert(false);
|
|
}
|
|
|
|
void sceGsExecStoreImage() {
|
|
assert(false);
|
|
}
|
|
|
|
void FlushCache() {
|
|
assert(false);
|
|
}
|
|
|
|
} // namespace ee
|
|
|
|
namespace iop {
|
|
u32 snd_BankLoadByLoc(u32 sector, u32 unk) {
|
|
(void)sector;
|
|
(void)unk;
|
|
assert(false);
|
|
return 0;
|
|
}
|
|
|
|
u32 snd_GetLastLoadError() {
|
|
assert(false);
|
|
return 0;
|
|
}
|
|
|
|
void snd_ResolveBankXREFS() {
|
|
assert(false);
|
|
}
|
|
|
|
} // namespace iop
|