Skip to content

Instantly share code, notes, and snippets.

@darvin
Created June 12, 2012 17:29
Show Gist options
  • Save darvin/2918877 to your computer and use it in GitHub Desktop.
Save darvin/2918877 to your computer and use it in GitHub Desktop.
VDLFrame struct from FreeDO emulator
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