File:  [RetroPC.NET] / np2 / vram / vram.c
Revision 1.5: download - view: text, annotated - select for diffs
Sun Feb 29 12:10:03 2004 JST (21 years, 8 months ago) by yui
Branches: MAIN
CVS tags: VER_0_80, VER_0_79, VER_0_78, VER_0_77, VER_0_76, VER_0_75, HEAD
support PC-9821 (T.Yui)

#include	"compiler.h"
#include	"cpucore.h"
#include	"vram.h"


	VRAM_T	vramop;
	BYTE	tramupdate[0x1000];
	BYTE	vramupdate[0x8000];
#if defined(SUPPORT_PC9821)
	BYTE	vramex[0x80000];
#endif


void vram_initialize(void) {

	ZeroMemory(&vramop, sizeof(vramop));
	i286_vram_dispatch(0);
}


RetroPC.NET-CVS <cvs@retropc.net>