Created
March 29, 2017 11:01
-
-
Save khalladay/7c86f092a48342adf6d35aa2861b3ed3 to your computer and use it in GitHub Desktop.
DevKitPro Test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef unsigned char uint8; | |
typedef unsigned short uint16; | |
typedef unsigned int uint32; | |
#define REG_DISPLAYCONTROL *((volatile uint32*)(0x04000000)) | |
#define VIDEOMODE_3 0x0003 | |
#define BGMODE_2 0x0400 | |
#define SCREENBUFFER ((volatile uint16*)0x06000000) | |
#define SCREEN_W 240 | |
#define SCREEN_H 160 | |
int main() | |
{ | |
REG_DISPLAYCONTROL = VIDEOMODE_3 | BGMODE_2; | |
for (int i = 0; i < SCREEN_W * SCREEN_H; ++i) | |
{ | |
SCREENBUFFER[i] = 0x001F; | |
} | |
while(1){} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment