Skip to content

Commit

Permalink
Add missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOnlyZac authored Jul 5, 2024
1 parent 4b2978d commit 9af1bd7
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ SCUS_971.98
SCUS_*.*
*.elf

prodg_sce*
tools/cc/*
prodg*
tools/cc/
usr/
sce/

html/
functions.txt
Expand Down
23 changes: 23 additions & 0 deletions include/sce/gs.h
Original file line number Diff line number Diff line change
@@ -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 changes: 5 additions & 0 deletions src/sce/rand.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#include "common.h"

INCLUDE_ASM(const s32, "sce/rand", srand);

INCLUDE_ASM(const s32, "sce/rand", rand);

0 comments on commit 9af1bd7

Please sign in to comment.