Deleted Added
full compact
lang.l (12772) lang.l (15257)
1%{
2/*-
3 * Copyright (c) 1980, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 43 unchanged lines hidden (view full) ---

52 { "and", AND },
53 { "args", ARGS },
54 { "at", AT },
55 { "auto", AUTO },
56#if MACHINE_I386
57 { "bio", BIO },
58 { "bus", BUS },
59 { "conflicts", CONFLICTS },
1%{
2/*-
3 * Copyright (c) 1980, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 43 unchanged lines hidden (view full) ---

52 { "and", AND },
53 { "args", ARGS },
54 { "at", AT },
55 { "auto", AUTO },
56#if MACHINE_I386
57 { "bio", BIO },
58 { "bus", BUS },
59 { "conflicts", CONFLICTS },
60#endif MACHINE_I386
60#endif
61 { "config", CONFIG },
62 { "controller", CONTROLLER },
63 { "cpu", CPU },
64 { "csr", CSR },
65 { "device", DEVICE },
61 { "config", CONFIG },
62 { "controller", CONTROLLER },
63 { "cpu", CPU },
64 { "csr", CSR },
65 { "device", DEVICE },
66#if MACHINE_I386
67 { "disable", DISABLE },
68#endif
66 { "disk", DISK },
67 { "drive", DRIVE },
69 { "disk", DISK },
70 { "drive", DRIVE },
68#if MACHINE_I386
71#if MACHINE_I386
69 { "drq", DRQ },
72 { "drq", DRQ },
70#endif MACHINE_I386
73#endif
71 { "dumps", DUMPS },
72 { "flags", FLAGS },
73 { "ident", IDENT },
74 { "interleave", INTERLEAVE },
75#if MACHINE_I386
76 { "iomem", IOMEM },
77 { "iosiz", IOSIZ },
78 { "irq", IRQ },
74 { "dumps", DUMPS },
75 { "flags", FLAGS },
76 { "ident", IDENT },
77 { "interleave", INTERLEAVE },
78#if MACHINE_I386
79 { "iomem", IOMEM },
80 { "iosiz", IOSIZ },
81 { "irq", IRQ },
79#endif MACHINE_I386
82#endif
80 { "machine", MACHINE },
81 { "major", MAJOR },
82 { "makeoptions", MAKEOPTIONS },
83 { "master", MASTER },
84 { "maxusers", MAXUSERS },
85 { "minor", MINOR },
86#if MACHINE_I386
87 { "net", NET },
83 { "machine", MACHINE },
84 { "major", MAJOR },
85 { "makeoptions", MAKEOPTIONS },
86 { "master", MASTER },
87 { "maxusers", MAXUSERS },
88 { "minor", MINOR },
89#if MACHINE_I386
90 { "net", NET },
88#endif MACHINE_I386
91#endif
89 { "nexus", NEXUS },
90 { "none", NONE },
91 { "on", ON },
92 { "options", OPTIONS },
93#if MACHINE_I386
94 { "port", PORT },
92 { "nexus", NEXUS },
93 { "none", NONE },
94 { "on", ON },
95 { "options", OPTIONS },
96#if MACHINE_I386
97 { "port", PORT },
95#endif MACHINE_I386
98#endif
96 { "priority", PRIORITY },
97 { "pseudo-device",PSEUDO_DEVICE },
98 { "root", ROOT },
99#if MACHINE_HP300 || MACHINE_LUNA68K
100 { "scode", NEXUS },
101#endif
102 { "sequential", SEQUENTIAL },
103 { "size", SIZE },
104 { "slave", SLAVE },
105 { "swap", SWAP },
106 { "tape", DEVICE },
107 { "target", TARGET },
108#if MACHINE_I386
109 { "tty", TTY },
99 { "priority", PRIORITY },
100 { "pseudo-device",PSEUDO_DEVICE },
101 { "root", ROOT },
102#if MACHINE_HP300 || MACHINE_LUNA68K
103 { "scode", NEXUS },
104#endif
105 { "sequential", SEQUENTIAL },
106 { "size", SIZE },
107 { "slave", SLAVE },
108 { "swap", SWAP },
109 { "tape", DEVICE },
110 { "target", TARGET },
111#if MACHINE_I386
112 { "tty", TTY },
110#endif MACHINE_I386
113#endif
111 { "trace", TRACE },
112 { "unit", UNIT },
113 { "vector", VECTOR },
114 { 0, 0 },
115};
116%}
117WORD [A-Za-z_][-A-Za-z_]*
118%%

--- 107 unchanged lines hidden ---
114 { "trace", TRACE },
115 { "unit", UNIT },
116 { "vector", VECTOR },
117 { 0, 0 },
118};
119%}
120WORD [A-Za-z_][-A-Za-z_]*
121%%

--- 107 unchanged lines hidden ---