aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/include/generic-netbsd/dev/isa/isvio.h
blob: 00ed923972d0616c69256d78b717003790e74da5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* $NetBSD: isvio.h,v 1.1 2008/04/02 01:34:36 dyoung Exp $ */

#ifndef _DEV_ISA_ISVIO_H_
#define _DEV_ISA_ISVIO_H_

#include <sys/inttypes.h>
#include <sys/ioccom.h>

#define	ISV_WIDTH	512
#define	ISV_LINES	480

struct isv_cmd {
	uint8_t			c_cmd;
	uint8_t			c_frameno;
};

#define	ISV_CMD_READ	0

#define ISV_CMD	_IOWR('x', 0, struct isv_cmd)

#endif /* _DEV_ISA_ISVIO_H_ */