Fix up ARM9_struct definition.

This commit is contained in:
riccardom 2008-12-30 13:43:32 +00:00
parent d1502f5bee
commit d386158e49
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
#include "types.h"
typedef ALIGN(16) struct {
struct ALIGN(16) ARM9_struct {
//ARM9 mem
u8 ARM9_ITCM[0x8000];
u8 ARM9_DTCM[0x4000];
@ -25,7 +25,7 @@ typedef ALIGN(16) struct {
u8 *textureSlotAddr[4];
u8 *blank_memory[0x20000];
} ARM9_struct;
};
extern ARM9_struct ARM9Mem;