From 8d9fee4d9e5e7f9639daa1558e524e1226768540 Mon Sep 17 00:00:00 2001 From: Sam Hegarty Date: Thu, 16 Feb 2012 21:49:19 +1300 Subject: [PATCH] add structure missing from last commit --- src/ge/pspge.h | 7 +++++++ 1 file changed, 7 insertions(+) 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);