blob: 0ffef36b81f60cf0b1af3cad208cc9b15e0efc6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
/*
* Copyright (c) 1987 University of Maryland Department of Computer Science.
* All rights reserved. Permission to copy for any purpose is hereby granted
* so long as this copyright notice remains intact.
*/
/*
* Macros to convert DVI opcodes to (hopefully) simpler values.
*/
/*
* Large range types.
*/
#define DVI_IsChar(code) ((code) < 128)
#define DVI_IsFont(code) ((code) >= 171 && (code) < 235)
/*
* Symbolic names for generic types (for things with parameters).
* These are obtained via the macro DVI_DT(int c), where 0 <= c <= 255.
*/
#define DT_CHAR 0
#define DT_SET 1
#define DT_SETRULE 2
#define DT_PUT 3
#define DT_PUTRULE 4
#define DT_NOP 5
#define DT_BOP 6
#define DT_EOP 7
#define DT_PUSH 8
#define DT_POP 9
#define DT_RIGHT 10
#define DT_W0 11
#define DT_W 12
#define DT_X0 13
#define DT_X 14
#define DT_DOWN 15
#define DT_Y0 16
#define DT_Y 17
#define DT_Z0 18
#define DT_Z 19
#define DT_FNTNUM 20
#define DT_FNT 21
#define DT_XXX 22
#define DT_FNTDEF 23
#define DT_PRE 24
#define DT_POST 25
#define DT_POSTPOST 26
#define DT_UNDEF 27
/*
* Symbolic names for parameter lengths, obtained via the macro
* DVL_OpLen(int c).
*
* N.B.: older drivers may assume that 0 => none, 1-4 => 1-4 bytes
* and 5-7 => unsigned version of 1-4---so DO NOT change these values!
*/
#define DPL_NONE 0
#define DPL_SGN1 1
#define DPL_SGN2 2
#define DPL_SGN3 3
#define DPL_SGN4 4
#define DPL_UNS1 5
#define DPL_UNS2 6
#define DPL_UNS3 7
/* there are no unsigned four byte parameters */
#define DVI_OpLen(code) (dvi_oplen[code])
#define DVI_DT(code) (dvi_dt[code])
extern char dvi_oplen[];
extern char dvi_dt[];
|