Add missing files

This commit is contained in:
Zac 2024-07-05 06:21:09 +00:00 committed by GitHub
parent 4b2978dc04
commit 9af1bd78ec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 30 additions and 3 deletions

5
.gitignore vendored
View File

@ -5,10 +5,9 @@ SCUS_971.98
SCUS_*.*
*.elf
prodg_sce*
tools/cc/*
prodg*
tools/cc/
usr/
sce/
html/
functions.txt

23
include/sce/gs.h Normal file
View File

@ -0,0 +1,23 @@
/**
* @file gs.h
*
* @brief Graphics Synthesizer.
*/
#ifndef GS_H
#define GS_H
#include "common.h"
struct sceGsTex0
{
undefined4 unk_0x0;
undefined4 unk_0x4;
};
struct sceGsTex2
{
undefined4 unk_0x0;
undefined4 unk_0x4;
};
#endif // GS_H

5
src/sce/rand.c Normal file
View File

@ -0,0 +1,5 @@
#include "common.h"
INCLUDE_ASM(const s32, "sce/rand", srand);
INCLUDE_ASM(const s32, "sce/rand", rand);