forked from Mirror/GodMode9
14 lines
421 B
C
14 lines
421 B
C
#pragma once
|
|
|
|
#define TOP_VRAM (400*240*4)
|
|
#define BOTTOM_VRAM (320*240*4)
|
|
|
|
#define VRAM_START (0x18300000)
|
|
#define VRAM_TOP_LA (VRAM_START)
|
|
#define VRAM_TOP_LB (VRAM_TOP_LA + TOP_VRAM)
|
|
#define VRAM_TOP_RA (VRAM_TOP_LB + TOP_VRAM)
|
|
#define VRAM_TOP_RB (VRAM_TOP_RA + TOP_VRAM)
|
|
#define VRAM_BOT_A (VRAM_TOP_RB + TOP_VRAM)
|
|
#define VRAM_BOT_B (VRAM_BOT_A + BOTTOM_VRAM)
|
|
#define VRAM_END (VRAM_BOT_B + BOTTOM_VRAM)
|