File:  [RetroPC.NET] / np2 / lio / gput1.c
Revision 1.2: download - view: text, annotated - select for diffs
Mon Dec 8 09:55:33 2003 JST (21 years, 10 months ago) by yui
Branches: MAIN
CVS tags: HEAD
add IA32 etc... (T.Yui)

#include	"compiler.h"
#include	"cpucore.h"
#include	"memory.h"
#include	"lio.h"


typedef struct {
	SINT16	x;
	SINT16	y;
	UINT16	off;
	UINT16	seg;
	UINT16	leng;
	BYTE	mode;
	BYTE	colsw;
	BYTE	fgcolor;
	BYTE	bgcolor;
} MEMGPUT1;


BYTE lio_gput1(void) {

	MEMGPUT1	dat;

	i286_memstr_read(CPU_DS, CPU_BX, &dat, sizeof(dat));
	return(0);
}


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