diff --git a/src/ge/pspge.h b/src/ge/pspge.h index 9725cfff..1db878e8 100644 --- a/src/ge/pspge.h +++ b/src/ge/pspge.h @@ -23,6 +23,13 @@ typedef struct PspGeContext { unsigned int context[512]; } PspGeContext; +/** Structure storing a stack (for CALL/RET) */ +typedef struct +{ + /** The stack buffer */ + unsigned int stack[8]; +} SceGeStack; + /** Typedef for a GE callback */ typedef void (*PspGeCallback)(int id, void *arg);