File:  [RetroPC.NET] / np2 / lio / gput1.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Fri Oct 17 02:58:27 2003 JST (22 years ago) by yui
Branches: mie
CVS tags: start, rel_036, VER_0_72, VER_0_71, VER_0_70
Neko Project II

#include	"compiler.h"
#include	"i286.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(I286_DS, I286_BX, &dat, sizeof(dat));
	return(0);
}


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