Created
June 12, 2012 17:29
-
-
Save darvin/2918877 to your computer and use it in GitHub Desktop.
VDLFrame struct from FreeDO emulator
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
struct VDLLine | |
//VDLP Line - one VDLP line per patent | |
{ | |
unsigned short line[320*4];//,line2[320*2*16]; | |
unsigned char xCLUTB[32]; | |
unsigned char xCLUTG[32]; | |
unsigned char xCLUTR[32]; | |
unsigned int xOUTCONTROLL; | |
unsigned int xCLUTDMA; | |
unsigned int xBACKGROUND; | |
}; | |
struct VDLFrame | |
{ | |
VDLLine lines[240*4]; | |
unsigned int srcw,srch; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment