mirror of
https://github.com/TheOnlyZac/sly1.git
synced 2024-11-26 23:20:43 +00:00
Add missing files
This commit is contained in:
parent
4b2978dc04
commit
9af1bd78ec
5
.gitignore
vendored
5
.gitignore
vendored
@ -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
23
include/sce/gs.h
Normal 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
5
src/sce/rand.c
Normal file
@ -0,0 +1,5 @@
|
||||
#include "common.h"
|
||||
|
||||
INCLUDE_ASM(const s32, "sce/rand", srand);
|
||||
|
||||
INCLUDE_ASM(const s32, "sce/rand", rand);
|
Loading…
Reference in New Issue
Block a user