#ifndef BG_HEADER
#define BG_HEADER

#define BG_SCREEN_WIDTH		32
#define BG_SCREEN_HEIGHT	32

#define BG_WIDTH			28
#define BG_HEIGHT			18

#define BG_TEXT_BASE		384	

void bg_Init();
void bg_Term();
void bg_On( int iScreenNo );
void bg_Off( int iScreenNo );
void bg_Clear( int iScreenNo, int iChrNo );
void bg_SetOffset( int iScreenNo, int iX, int iY );
void bg_Set( int iScreenNo, int iX, int iY, int iChrNo );
void bg_Text( int iScreen, int iX, int iY, char * pText, int iParam );

#endif