| ![[BACK]](/cvs/cvsweb/icons/back.gif) Return to gput1.c CVS log ![[TXT]](/cvs/cvsweb/icons/text.gif) | ![[DIR]](/cvs/cvsweb/icons/dir.gif) Up to  [RetroPC.NET] / np2 / lio | 
Initial revision
#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);
}