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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
|
# $XFree86: xc/programs/Xserver/hw/xfree86/doc/modeDB.txt,v 3.8 1997/12/20 14:20:57 hohndel Exp $
#
#
#
#
# $XConsortium: modeDB.txt /main/6 1996/02/21 17:44:44 kaleb $
#
# XFree86/X386 Mode database
# Compiled by David Wexelblat [dwex@xfree86.org]
# Huge Contributions to v2.0 from Thomas Roell [roell@xinside.com]
#
# Version 3.9
# August 28, 1994
#
# ACCELERATED CARD NOTE:
# Refer to the AccelCards file for real details on accelerated cards
# supported by XFree86. Accelerated cards include ATI Mach8/Mach32,
# 8514/A, S3, Cirrus 5426/5428, and WD90C31.
#
# NOTE:
# The information in this file was provided to the compiler by the
# individuals listed with each entry. No effort has been made to
# validate the correctness of the information. If you have problems
# with a specific entry, you should contact the contributor at the
# address provided.
#
# NOTE 2:
# This database contains information for cards compatible with servers
# derived from X386 1.1, including X386 1.2 (X11R5), XFree86, and XS3.
# Hence not all of the cards listed here work with all of the various
# X386 derivatives.
#
# HOW TO USE THIS FILE:
# The information in this file is presented in the format used for the
# Xconfig file for X386 1.1b (X11R4), as this version requires a more
# verbose format and more detailed information that X386 1.2 (X11R5).
# The information is applicable to both versions, however, for X386 1.2,
# you will need to specify information in the format described in the
# manual page provided with that release.
#
# Several ET4000 entries have 16 clocks. If you are using X386 1.1b
# 1.1b or 1.2, only the first 8 clocks are usable. If you are using
# X386 1.2E or XFree86, all 16 are usable.
#
# XFree86 1.2 adds the ability to report and support fractional dot
# clocks. If you are using an earlier version of X386 or XFree86,
# and want to use a card entry with fractional dot-clocks, round
# the specified dot-clock values to integers. If you want to use
# a monitor entry that has a fractional dot-clock, round the clock
# value, and scale the other numbers as described below.
#
# First, locate your VGA card in the first section of this file. Note
# that some cards have more than one entry. Where possible, these are
# distinguished by some identifying characteristic (e.g. board date code).
# This was not always possible, however.
#
# If your card is not listed below, you can use the the startup information
# from X386 1.2, X386 1.2E, or XFree86 to get the clock information. Note
# that the clock listing must be in the exact order reported by these
# sources - don't sort them.
#
# Once you have identified your card, you can locate entries for your
# monitor. At the beginning of the monitor section is a listing of the
# VESA standard and other generic definitions. You should attempt to use
# these entries, if possible, even if there are specific entries for your
# monitor in the database.
#
# If you find a set of monitor resolutions that fit your monitor and the
# clocks available from your VGA card, you are pretty much all set. If
# not, don't give up hope. See the references listed below for details
# of how to create your own entries.
#
# As a quick starting point, if your monitor is listed, but the specified
# resolutions don't match your available clocks, you can start by scaling
# a close value to an available one (e.g. an entry for 62 is specified,
# but your card has 65). Simply scale the 2nd, 3rd, and 4th numbers in
# the horizontal and vertical groups of 4 by the ratio of your clock
# divided by the given clock (in our example, multiply by 65/62). Note
# that the horizontal numbers should be rounded to the nearest multiple
# of 8 (otherwise the server will truncate them). This is not required
# for the vertical numbers.
#
# FEEDBACK:
# The compiler of this database welcomes feedback on and contributions to
# this database. Send electronic mail to dwex@xfree86.org
#
# REFERENCES:
# 1) The XFree86 README.Config file.
# 2) The VideoModes.doc file provided with XFree86 1.2 contains a very
# complete and detailed tutorial by Eric Raymond [esr@snark.thrysus.com].
# 3) The CONFIG file provided with X386 1.1b and X386 1.2 contains a
# detailed tutorial on monitor timing by Chin Fang
# [fangchin@leland.stanford.edu]
# 4) Another tutorial was posted to the UseNet newsgroup comp.unix.sysv386
# by Bob Crosson [crosson@cam.nist.gov].
###############################################################################
#
# VGA CARD SECTION
#
###############################################################################
# Card: 2-the-MAX VGA 4000
# Contributor: E.J.McKernan [ejm@datalog.com]
# Last Edit Date: 12/16/91
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 33 36 39 45 56 65 "800x600"
###############################################################################
# Card: 2-the-MAX VGA 4032
# Contributor: Nils Rennebarth [nils@sonya.exp-math.uni-essen.de]
# Last Edit Date: 4/7/93
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 1024 25 28 26 36 40 45 51 64 "1024x768"
50 56 65 72 80 105 100 128
###############################################################################
# Card: 2-the-MAX VGA 4000S (hicolor)
# Contributor: Nathan Laredo [nathan@eas.gatech.edu]
# Last Edit Date: 12/9/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 1024 25 28 33 36 40 45 32 38 "1024x768i"
50 57 65 72 80 90 63 76
###############################################################################
# Card: Actix GraphicsEngine32+ 2Meg
# Contributor: David Wexelblat [dwex@xfree86.org]
# Last Edit Date: 8/29/93
#
# chip ram virtual clocks default-mode flags
S3 2048 1280 1024 25.2 28.3 40.0 0.0 "1024x768"
50.0 77.0 36.0 44.9
130.0 120.0 80.0 31.5
110.0 65.0 75.0 94.5
###############################################################################
# Card: ATI Graphics Ultra Pro (VLB)
# Contributor: Bill C. Riemers [bcr@physics.purdue.edu]
# Last Edit Date: 5/4/93
#
# chip ram virtual clocks default-mode flags
ATI 1024 1152 910 51 36 126 25 80 65 45 40 "1152x910"
135 32 110 80 45 40 75 65
###############################################################################
# Card: ATI mach32 (VLB)
# Contributor: Craig E. Groeschel [craig@adikia.sccsi.com]
# Last Edit Date: 11/18/93
#
# chip ram virtual clocks default-mode flags
mach32 2048 1152 900 100 126 92.4 36 50.35 56.64 0 44.9 "1024x768"
135 32 110 80 39.91 44.9 75 65
50 63 46.2 18 25.175 28.32 0 22.45
67.5 16 55 40 19.955 22.45 37.5 32.5
###############################################################################
# Card: ATI VGAWonder series
# Contributor: Marc Aurele La France [tsi@ualberta.ca]
# Last Edit Date: 1994.06.07
#
# See file README.ati for clock information for these cards.
###############################################################################
# Card: BOCA Research with 1M for interlaced monitor
# or with 512K
# Contributor: [ilan343@violet.berkeley.edu]
# Contributor: Alfonso Marmora [ajm@icc.com]
# Last Edit Date: 12/12/91
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 36 40 50 45 65 0 "1024x768i"
ET4000 512 840 624 25 28 36 40 50 45 65 0 "840x624"
###############################################################################
# Card: Boca Reasearch SVGAX2
# Contributor: Steve Kump [skump@panix.com]
# Last Edit Date: 11/04/93
#
# chip ram virtual clocks default-mode flags
clgd5422 1024 1152 900 25.23 28.32 41.16 36.08 "1024x768i"
31.50 39.99 45.08 49.87
64.98 72.16 75.00 80.01
###############################################################################
# Card: Cardinal 700, 1M
# Contributor: [hedrick@cs.rutgers.edu]
# Last Edit Date: 8/29/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 768 25 28 32 36 40 44 31 37 "1024x768"
0 55 64 59 79 89 62 74
###############################################################################
# Card: Cardinal ET4000, 1M
# Contributor: Tom Lang [lang@hal.com]
# Last Edit Date: 1/8/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 768 25 28 38 36 40 45 32 0 "1024x768" Legend
###############################################################################
# Card: Cirrus 5422/AVGA3
# Contributor: Ari Lemmke [arl@cs.hut.fi]
# Last Edit Date: 8/22/93
#
# chip ram virtual clocks default-mode flags
clgd5426 1024 1152 900 25.23 28.32 41.16 36.08 "1152x900"
31.50 39.99 45.08 49.87
64.98 72.16 75.00 80.01
###############################################################################
# Card: Cirrus 5426 (e.g. Diamond SpeedStar Pro)
# Contributor: Chris Metcalf [metcalf@lcs.mit.edu]
# Last Edit Date: 7/22/93
#
# chip ram virtual clocks default-mode flags
clgd5426 1024 1152 900 25.23 28.32 41.16 36.08 "1152x900"
31.50 39.99 45.08 49.87
64.98 72.16 75.00 80.01
###############################################################################
# Card: Color Design Local Bus (AT&T 20C491 24-bit RAMDAC)
# Contributor: Rich Braun [richb@rkbhome.jti.com]
# Last Edit Date: 3/7/93
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 768 25.2 28.3 32.4 36.0 "1024x768"
39.9 44.7 31.4 38.4
50.2 56.6 66.0 71.7
79.9 89.7 63.0 74.8
###############################################################################
# Card: CompuAdd HiRez, 1 Meg
# Contributor: Rick Calder [rick@rick.att.com]
# Last Edit Date: 12/9/91
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 33 36 40 45 56 65 "1024x768i"
###############################################################################
# Card: Diamond Speedstar with HIcolor
# Contributor: Arthur W. Neilson III [art@pilikia.pegasus.com]
# Last Edit Date: 1/20/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 768 25 28 75 72 80 45 50 63 "1024x768"
###############################################################################
# Card: Diamond Speedstar II+ (Direct from Gateway 2000)
# Contributor: Thomas Naughton [naughton@chinet.chi.il.us]
# Last Edit Date: 10/17/91
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 57 72 78 68 50 62 "1152x900"
###############################################################################
# Card: Diamond SpeedStar Plus w/ 1M
# Contributor: Scott Everden [scott@unixland.natick.ma.us]
# Last Edit Date: 10/20/91
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 65 72 79 59 50 64 "1024x768"
###############################################################################
# Card: Diamond SpeedStar Plus, High Color
# Contributor: Peter Ziobrzynski [peter@modtor.uucp]
# Last Edit Date: 10/16/91
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 768 25 28 50 57 62 66 72 78 "1024x768"
###############################################################################
# Card: Diamond SpeedStar Plus, High Color (1M)
# Contributor: Jeff Coffler [coffler@jeck.mv.com]
# Last Edit Date: 1/27/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 768 25 28 75 72 80 45 50 65 "1024x768"
###############################################################################
# Card: Diamond SpeedStar Pro
#
# See entry under "Cirrus 5426" above
###############################################################################
# Card: Diamond Stealth(S3 924)
# Contributor: Keishi Manabe [manabe@zephyrus.tutics.tut.ac.jp]
# Last Edit Date: 2/16/93
#
# chip ram virtual clocks default-mode flags
s3 1024 1024 768 25 36 50 80 "800x600"
###############################################################################
# Card: EDGE(ECS) V24(S3-924)
# Contributor: Analytical Methods [ami@nwnet.net]
# Last Edit Date: 2/9/93
#
# chip ram virtual clocks default-mode flags
s3 1024 1024 768 25 28 40 71 50 77 36 45 "1024x768"
130 120 80 32 110 65 75 72
###############################################################################
# Card: EIZO VA41 1Mb
# Contributor: Steinthor Bjarnason [stb@isbank.is]
# Last Edit Date: 12/9/91
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 65 72 62 36 0 0 0 45 "1024x768"
###############################################################################
# Card: EIZO VA41 1Mb
# Contributor: Arnd Gehrmann [arnd@zeus.informatik.rwth-aachen.de]
# Last Edit Date: 9/6/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 768 25 28 20 33 16 34 43 40 "1024x768"
63 57 41 62 0 61 77 76
###############################################################################
# Card: Everex Viewpoint NI with 512K
# Contributor: Dan Ellison [dan@dribble.c-mols.siu.edu]
# Last Edit Date: 2/20/92
#
# chip ram virtual clocks default-mode flags
ET4000 512 832 624 25 28 36 40 50 45 0 61 "832x624""
###############################################################################
# Card: GA-200 Local Bus ET4000 Card
# Contributor: Brian Smith [brians@rigel.cs.pdx.edu]
# Last Edit Date: 6/24/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 50 57 65 72 80 90 101 127 "1152x900"
###############################################################################
# Card: GA-200 Local Bus ET4000
# Contributor: Neville H. Chandler [nhc@mtdcr.mt.att.com]
# Last Edit Date: 10/13/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 32 36 43 45 48 65 "1024x768"
50 60 0 72 90 0 101 130
###############################################################################
# Card: Genoa Super VGA, Model 7800
# Contributor: Michael Hirsch [mike@rolivaw.pr.net.ch]
# Last Edit Date: 3/22/93
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25.2 28.3 32.6 36.1 "1024x768"
40.1 45.1 31.5 37.7
50.3 56.7 65.3 72.2
80.3 90.2 63.1 75.5
###############################################################################
# Card: Micro-Labs, Inc Ultimate VGA/HiColor 2.0
# Contributor: Matti Aarnio [mea@utu.fi, mea@nic.funet.fi]
# Last Edit Date: 1/6/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 910 46 53 60 66 72 82 90 91 "1152x910"
###############################################################################
# Card: OAK Technology OTI-077
# Contributor: Pedro R. Benito da Rocha [pedro@luna.gui.uva.es]
# Last Edit Date: 4/27/94
#
# chip ram virtual clocks default-mode flags
OTI077 1024 1024 768 25.40 28.32 65.40 45.20 "800x600"
14.20 18.10 40.30 36.20
###############################################################################
# Card: Optima VGA
# Contributor: Holger Veit [veit@du9ds3.uni-duisburg.de]
# Last Edit Date: 9/22/92
#
# chip ram virtual clocks default-mode flags
ET3000 512 800 600 25 28 41 45 33 29 0 0 "800x600"
###############################################################################
# Card: Optima MEGA VGA-Sync (H3Z 3081)
# Contributor: J. Schnitter [josch@pc.chemie.th-darmstadt.de]
# Last Edit Date: 5/6/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 910 25 28 45 36 0 0 0 62 "1040x772"
###############################################################################
# Card: Orchid F1280(S3 911)
# Contributor: Shin Seto[sseto@auspex.com]
# Last Edit Date: 2/16/93
#
# chip ram virtual clocks default-mode flags
s3 1024 768 25 28 32 36 40 44 50 65 "1024x768"
78 56 63 75 80 89 100 31
###############################################################################
# Card: Orchid Prodesigner II
# Contributor: John LoSecco [losecco@undpdk.hep.nd.edu]
# Last Edit Date: 10/20/91
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 32 36 40 45 50 65 "800x600"
###############################################################################
# Card: Orchid Prodesigner II
# Contributor: Jeff Michaud [michaud@cdsmn.mn.org]
# Last Edit Date: 12/9/91
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 1024 25 28 36 40 45 62 0 0 "800x600"
###############################################################################
# Card: Orchid Prodesigner II
# Contributor: Wei Jen Ye [yeh@cs.purdue.edu]
# Last Edit Date: 5/21/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 800 600 25 28 40 36 45 0 0 62 "800x600"
###############################################################################
# Card: Orchid ProDesigner IIs
# Contributor: David Wexelblat [dwex@xfree86.org]
# Last Edit Date: 10/14/91
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 32 36 40 45 75 65 "1024x768"
###############################################################################
# Card: Orchid ProDesigner IIs - board date code 12/91
# Contributor: Fan Jiao [fanj@remb6489.wpd.sgi.com
# Last Edit Date: 4/13/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 32 36 40 45 80 65 "1024x768"
###############################################################################
# Card: Orchid VA(S3 801)
# Contributor: Shin Seto[sseto@auspex.com]
# Last Edit Date: 2/16/93
#
# chip ram virtual clocks default-mode flags
s3 1024 768 25 28 53 63 57 88 41 51 "1024x768"
148 136 91 36 125 75 85 108
###############################################################################
# Card: Puretek ET4000 SVGA
# Contributor: Dave Barker [dbarker@mulga.awadi.com.au]
# Last Edit Date: 4/7/93
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 40 34 0 0 0 60 "1152x900i"
###############################################################################
# Card: Rainbow SVGA with 1M for interlaced monitor
# Contributor: Geraldo Veiga [ilan343@violet.berkeley.edu]
# Last Edit Date: 12/9/91
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 36 40 25 28 45 62 "1024x768i"
###############################################################################
# Card: Sigma Legend II
# Contributor: Rui Salgueiro [rps@mat.uc.pt]
# Last Edit Date: 5/4/93
#
# chip ram virtual clocks
ET4000 1024 1160 903 25 28 0 40 36 40 45 58 "816x612" legend
32 36 31 35 50 48 33 65
###############################################################################
# Card: STB Powergraph, 1 Meg
# Contributor: Jeff Jennings [jennings@stortek.com]
# Last Edit Date: 12/9/91
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 37 45 40 32 0 63 "1024x768i"
###############################################################################
# Card: STB Powergraph, 1 Meg
# Contributor: Tim Peiffer [peiffer@cs.umn.edu]
# Last Edit Date: 1/27/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 37 45 40 33 50 65 "1024x768i"
###############################################################################
# Card: STB Powergraph ERGO, 1 Meg
# Contributor: Rick Calder [rick@rick.att.com]
# Last Edit Date: 12/9/91
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 59 48 40 0 50 66 "1024x768"
###############################################################################
# Card: Swan SVGA Adapter, Model VGA/16, 1 Meg
# (Non-VCO - uses 5 crystals)
# Contributor: Shaun T. Erickson [ste@alux2.att.com]
# Last Edit Date: 1/21/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 40 36 0 0 0 45 "1024x768i"
###############################################################################
# Card: SWAN sVGA (with VCO chip)
# Contributor: Steve Hite [shite@sinkhole.unf.edu]
# Creator: Chin Fang [fangchin@leland.stanford.edu]
# Last Edit Date: 10/15/91
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 32 36 40 45 75 65 "1024x768"
###############################################################################
# Card: Trident Generic 8900CL (TCK9004N clock chip)
# Contributor: David Wexelblat [dwex@xfree86.org]
# Last Edit Date: 4/18/93
#
# chip ram virtual clocks default-mode flags
TVGA8900CL
1024 1024 768 25 28 45 36 57 65 50 40 "1024x768"
88 98 119 108 72 77 80 75
###############################################################################
# Card: Trident JAX-8212B (TCK9002NP clock chip)
# Contributor: David Wexelblat [dwex@xfree86.org]
# Last Edit Date: 4/18/93
#
# chip ram virtual clocks default-mode flags
TVGA8900C 512 1024 768 25.2 28.3 45.0 36.0 "800x600"
57.3 65.0 50.5 40.0
0.0 0.0 0.0 0.0
72.0 77.0 80.0 75.0
###############################################################################
# Card: Trident JAX-8214
# Contributor: David Wexelblat [dwex@xfree86.org]
# Last Edit Date: 9/5/92
#
# chip ram virtual clocks default-mode flags
TVGA8900C 1024 1024 768 25 28 45 36 57 65 50 40 "1024x768"
###############################################################################
# Card: Tseng et4000 UN-4010
# Contributor: Al Petrofsky [al@imdvlf.acuson.com]
# Last Edit Date: 6/11/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 768 24 28 32 36 40 45 56 65 "1024x768"
###############################################################################
# Card: Tseng Labs ET4000
# Contributor: David McCullough [davidm@stallio.oz.au]
# Last Edit Date: 11/19/93
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 768 25.2 28.3 32.5 36.0 "1024x768"
40.0 44.9 31.5 37.5
50.3 56.6 65.0 72.0
80.0 89.8 63.0 75.0
###############################################################################
# Card: Tseng Labs ET4000/W32 VLB
# Contributor: Georges Tomazi [tomazi@kralizec.zeta.org.au]
# Last Edit Date: 12/19/93
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 768 25 28 32 36 40 34 32 38 "1024x768"
50 56 65 72 80 90 63 75
###############################################################################
# Card: Tseng Highcolor 72Mhz
# Contributor: Tom Hoople [hooplet@ucsu.Colorado.EDU]
# Last Edit Date: 3/18/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 0 45 65 72 0 0 0 0 "1024x768"
###############################################################################
# Card: Tseng Labs International: MegaEva/1024
# Contributor: Nicolai Langfeldt [janl@ifi.uio.no]
# Last Edit Date: 8/11/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1144 858 25 28 42 0 33 35 22 26 "1144x858"
56 62 82 0 65 70 45 52
###############################################################################
# Card: Tseng Labs MegaEva/2
# Contributor: Richard Brown [rab@tauon.ph.unimelb.edu.au]
# Last Edit Date: 5/25/93
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 768 25.2 28.3 37.9 22.8 "1024x768"
29.5 32.0 40.0 47.5
50.4 56.6 75.8 45.5
59.0 64.0 80.0 95.0
###############################################################################
# Card: Tseng Labs International: VGA ultra
# Contributor: Nicolai Langfeldt [janl@ifi.uio.no]
# Comments: Clocks higher than 72MHz are useless
# Last Edit Date: 8/11/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1120 840 25 28 32 36 40 45 31 38 "1120x840"
50 57 52 72 80 91 63
###############################################################################
# Card: VGA4031
# Contributor: Nicolai Langfeldt [janl@ifi.uio.no]
# Comments: Buggy, workable under X386
# Last Edit Date: 8/11/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1120 840 25 28 32 36 40 45 50 65 "1120x840"
0 57 0 72 80 108 101 130
###############################################################################
# Card: VGA4031
# Contributor: Stephen Hocking [sgccseh@citecuc.citec.oz.au]
# Last Edit Date: 8/12/92
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 768 25 28 32 36 40 45 50 65 "1024x768"
0 57 0 72 80 124 101 129
###############################################################################
# Card: VGA4031
# Contributor: Hartmut Kuehn Allgemeine Box IET
# [KUEHNNTE@Rcms1.urz.tu-dresden.de]
# Last Edit Date: 1/13/93
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1152 900 25 28 32 35 40 45 31 37 "1024x768"
50 57 65 72 80 89 62 75
###############################################################################
# Card: VGA MENTOR
# Contributor: Jun Arihara[j_ariha@hoffman.cc.sophia.ac.jp]
# Last Edit Date: 2/20/93
#
# chip ram virtual clocks default-mode flags
ET4000 1024 1024 768 25 28 33 36 40 45 32 38 "800x600"
###############################################################################
#
# MONITOR SECTION
#
###############################################################################
#
# OFFICIAL VESA Monitor timings + IBM Standards + other generic modes -
# TRY THESE FIRST
# Contributor: Thomas Roell [roell@xinside.com]
# Contributor: David Wexelblat [dwex@xfree86.org]
# Last Edit Date: 10/7/93
#
# Mode Refresh Hor. Sync Dot-clock Interlaced? VESA?
# ------------------------------------------------------------
# 640x480 60Hz 31.5k 25.175M No No
# 640x480 60Hz 31.5k 25.175M No No
# 640x480 63Hz 32.8k 28.322M No No
# 640x480 70Hz 36.5k 31.5M No No
# 640x480 72Hz 37.9k 31.5M No Yes
# 800x600 56Hz 35.1k 36.0M No Yes
# 800x600 56Hz 35.4k 36.0M No No
# 800x600 60Hz 37.9k 40.0M No Yes
# 800x600 60Hz 37.9k 40.0M No No
# 800x600 72Hz 48.0k 50.0M No Yes
# 1024x768i 43.5Hz 35.5k 44.9M Yes No
# 1024x768 60Hz 48.4k 65.0M No Yes
# 1024x768 60Hz 48.4k 62.0M No No
# 1024x768 70Hz 56.5k 75.0M No Yes
# 1024x768 70Hz 56.25k 72.0M No No
# 1024x768 76Hz 62.5k 85.0M No No
# 1280x1024i 44Hz 51kHz 80.0M Yes No
# 1280x1024i 44Hz 47.6k 75.0M Yes No
# 1280x1024 59Hz 63.6k 110.0M No No
# 1280x1024 61Hz 64.24k 110.0M No No
# 1280x1024 74Hz 78.85k 135.0M No No
#
###############################################################################
#
# 640x480@60Hz Non-Interlaced mode
# Horizontal Sync = 31.5kHz
# Timing: H=(0.95us, 3.81us, 1.59us), V=(0.35ms, 0.064ms, 1.02ms)
#
# name clock horizontal timing vertical timing flags
"640x480" 25.175 640 664 760 800 480 491 493 525
#
# Alternate 640x480@60Hz Non-Interlaced mode
# Horizontal Sync = 31.5kHz
# Timing: H=(1.27us, 3.81us, 1.27us) V=(0.32ms, 0.06ms, 1.05ms)
#
# name clock horizontal timing vertical timing flags
"640x480" 25.175 640 672 768 800 480 490 492 525
#
# 640x480@63Hz Non-Interlaced mode (non-standard)
# Horizontal Sync = 32.8kHz
# Timing: H=(1.41us, 1.41us, 5.08us) V=(0.24ms, 0.092ms, 0.92ms)
#
# name clock horizontal timing vertical timing flags
"640x480" 28.322 640 680 720 864 480 488 491 521
#
# 640x480@70Hz Non-Interlaced mode (non-standard)
# Horizontal Sync = 36.5kHz
# Timing: H=(1.27us, 1.27us, 4.57us) V=(0.22ms, 0.082ms, 0.82ms)
#
# name clock horizontal timing vertical timing flags
"640x480" 31.5 640 680 720 864 480 488 491 521
#
# VESA 640x480@72Hz Non-Interlaced mode
# Horizontal Sync = 37.9kHz
# Timing: H=(0.76us, 1.27us, 4.06us) V=(0.24ms, 0.079ms, 0.74ms)
#
# name clock horizontal timing vertical timing flags
"640x480" 31.5 640 664 704 832 480 489 492 520
#
# VESA 800x600@56Hz Non-Interlaced mode
# Horizontal Sync = 35.1kHz
# Timing: H=(0.67us, 2.00us, 3.56us) V=(0.03ms, 0.063ms, 0.70ms)
#
# name clock horizontal timing vertical timing flags
"800x600" 36 800 824 896 1024 600 601 603 625
#
# Alternate 800x600@56Hz Non-Interlaced mode
# Horizontal Sunc = 35.4kHz
# Timing: H=(0.89us, 4.00us, 1.11us) V=(0.11ms, 0.057ms, 0.79ms)
#
# name clock horizontal timing vertical timing flags
"800x600" 36 800 832 976 1016 600 604 606 634
#
# VESA 800x600@60Hz Non-Interlaced mode
# Horizontal Sync = 37.9kHz
# Timing: H=(1.00us, 3.20us, 2.20us) V=(0.03ms, 0.106ms, 0.61ms)
#
# name clock horizontal timing vertical timing flags
"800x600" 40 800 840 968 1056 600 601 605 628 +hsync +vsync
#
# Alternate 800x600@60Hz Non-Interlaced mode
# Horizontal Sync = 37.9kHz
# Timing: H=(1.20us, 3.80us, 1.40us) V=(0.13ms, 0.053ms, 0.69ms)
#
# name clock horizontal timing vertical timing flags
"800x600" 40 800 848 1000 1056 600 605 607 633
#
# VESA 800x600@72Hz Non-Interlaced mode
# Horizontal Sync = 48kHz
# Timing: H=(1.12us, 2.40us, 1.28us) V=(0.77ms, 0.13ms, 0.48ms)
#
# name clock horizontal timing vertical timing flags
"800x600" 50 800 856 976 1040 600 637 643 666 +hsync +vsync
#
# 1024x768@43.5Hz, Interlaced mode (8514/A standard)
# Horizontal Sync = 35.5kHz
# Timing: H=(0.54us, 1.34us, 1.25us) V=(0.23ms, 0.23ms, 0.93ms)
#
# name clock horizontal timing vertical timing flags
"1024x768i" 44.9 1024 1048 1208 1264 768 776 784 817 Interlace
#
# VESA 1024x768@60Hz Non-Interlaced mode
# Horizontal Sync = 48.4kHz
# Timing: H=(0.12us, 2.22us, 2.58us) V=(0.06ms, 0.12ms, 0.60ms)
#
# name clock horizontal timing vertical timing flags
"1024x768" 65 1024 1032 1176 1344 768 771 777 806 -hsync -vsync
#
# 1024x768@60Hz Non-Interlaced mode (non-standard dot-clock)
# Horizontal Sync = 48.4kHz
# Timing: H=(0.65us, 2.84us, 0.65us) V=(0.12ms, 0.041ms, 0.66ms)
#
# name clock horizontal timing vertical timing flags
"1024x768" 62 1024 1064 1240 1280 768 774 776 808
#
# VESA 1024x768@70Hz Non-Interlaced mode
# Horizontal Sync=56.5kHz
# Timing: H=(0.32us, 1.81us, 1.92us) V=(0.05ms, 0.14ms, 0.51ms)
#
# name clock horizontal timing vertical timing flags
"1024x768" 75 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
#
# 1024x768@70Hz Non-Interlaced mode (non-standard dot-clock)
# Horizontal Sync=56.25kHz
# Timing: H=(0.44us, 1.89us, 1.22us) V=(0.036ms, 0.11ms, 0.53ms)
#
# name clock horizontal timing vertical timing flags
"1024x768" 72 1024 1056 1192 1280 768 770 776 806 -hsync -vsync
#
# 1024x768@76Hz Non-Interlaced mode
# Horizontal Sync=62.5kHz
# Timing: H=(0.09us, 1.41us, 2.45us) V=(0.09ms, 0.048ms, 0.62ms)
#
# name clock horizontal timing vertical timing flags
"1024x768" 85 1024 1032 1152 1360 768 784 787 823
#
# 1280x1024@44Hz, Interlaced mode
# Horizontal Sync=51kHz
# Timing: H=(0.02us, 2.7us, 0.70us) V=(0.02ms, 0.24ms, 2.51ms)
#
# name clock horizontal timing vertical timing flags
"1280x1024i" 80 1280 1296 1512 1568 1024 1025 1037 1165 Interlace
#
# Alternate 1280x1024@44Hz, Interlaced mode (non-standard dot-clock)
# Horizontal Sync=47.6kHz
# Timing: H=(0.42us, 2.88us, 0.64us) V=(0.08ms, 0.12ms, 0.96ms)
#
# name clock horizontal timing vertical timing flags
"1280x1024i" 75 1280 1312 1528 1576 1024 1028 1034 1080 Interlace
#
# 1280x1024@59Hz Non-Interlaced mode (non-standard)
# Horizontal Sync=63.6kHz
# Timing: H=(0.36us, 1.45us, 2.25us) V=(0.08ms, 0.11ms, 0.65ms)
#
# name clock horizontal timing vertical timing flags
"1280x1024" 110 1280 1320 1480 1728 1024 1029 1036 1077
#
# 1280x1024@61Hz, Non-Interlaced mode
# Horizontal Sync=64.25kHz
# Timing: H=(0.44us, 1.67us, 1.82us) V=(0.02ms, 0.05ms, 0.41ms)
#
# name clock horizontal timing vertical timing flags
"1280x1024" 110 1280 1328 1512 1712 1024 1025 1028 1054
#
# 1280x1024@74Hz, Non-Interlaced mode
# Horizontal Sync=78.85kHz
# Timing: H=(0.24us, 1.07us, 1.90us) V=(0.04ms, 0.04ms, 0.43ms)
#
# name clock horizontal timing vertical timing flags
"1280x1024" 135 1280 1312 1456 1712 1024 1027 1030 1064
###############################################################################
###############################################################################
# Monitor: Acer Computer GmbH, Mod. No. 7033
# (14" 8514/A compatible)
# Contributor: Michael Riepe [riepe@ifwsn4.ifw.uni-hannover.de]
# Last Edit Date: 11/20/1993
#
# name clock horizontal timing vertical timing flags
"640x480" 25.175 640 672 768 800 480 490 492 525
"800x600" 36 800 832 976 1016 600 604 606 634
"1024x768i" 44.9 1024 1048 1208 1264 768 776 784 817 Interlace
###############################################################################
# Monitor: AcerView 25 uvga (also ViewSonic 5e)
# Contributor: Thomas Dunbar [tdunbar@vtaix.cc.vt.edu]
# Last Edit Date: 5/1/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 78 1024 1056 1336 1368 768 768 776 790
###############################################################################
# Monitor: AcerView 25 uvga (also ViewSonic 5e)
# Contributor: Richard Brown [rab@tauon.ph.unimelb.edu.au]
# Last Edit Date: 5/25/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 768 800 480 491 493 525
"800x600" 38 800 840 912 1024 600 601 603 625
"1024x768" 64 1024 1032 1176 1312 768 768 769 806
80 1024 1104 1228 1360 768 768 769 802
###############################################################################
# Monitor: AcerView 25 uvga (also ViewSonic 5e)
# Contributor: Craig E. Groeschel [craig@adikia.sccsi.com]
# Last Edit Date: 11/18/93
#
# name clock horizontal timing vertical timing flags
"640x400" 28.32 640 664 712 808 400 400 402 417 -hsync -vsync
"672x448" 28.32 672 712 760 864 448 451 454 466 -hsync -vsync
"680x510" 32 680 736 792 904 510 513 516 530 +hsync +vsync
"800x600" 40 800 848 1000 1056 600 603 606 621 +hsync +vsync
"920x690" 65 920 984 1024 1272 690 696 699 720 -hsync -vsync
"1024x768" 75 1024 1120 1256 1440 768 768 770 800 -hsync -vsync
80 1024 1144 1296 1464 768 774 777 801 -hsync -vsync
###############################################################################
# Monitor: Addonics C172/LR Ultra 1280
# Contributor: Joergen Haegg [jh@efd.lth.se]
# Last Edit Date: 11/20/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 75 1024 1048 1184 1328 768 771 777 806
###############################################################################
# Monitor: AOC CM-337
# Contributor: Michael Schmidt [michael@amigo.guug.de]
# Last Edit Date: 5/3/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 72 1024 1096 1272 1328 768 776 778 808
###############################################################################
# Monitor: AT&T CRT-329D
# Contributor: Jerry Whelan [guru@stasi.bradley.edu]
# Last Edit Date: 6/8/92
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 664 760 800 480 491 493 525
"900x620" 40 900 928 1114 1140 620 628 639 643
###############################################################################
# Monitor: AT&T CRT-365 (Iocomm 16")
# Contributor: Rick Calder [rick@rick.att.com]
# Last Edit Date: 12/9/91
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 664 760 800 480 496 492 525
28 640 672 768 800 480 490 492 525
"800x600" 36 800 816 952 1056 600 608 610 633
"1024x768i" 45 1024 1064 1224 1264 768 777 785 817 Interlace
###############################################################################
# Monitor: Compudyne KD-1450
# Contributor: Rich Braun [richb@rkbhome.jti.com]
# Last Edit Date: 3/7/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 65 1024 1096 1240 1344 768 771 777 806
75 1024 1176 1312 1424 768 771 777 806
###############################################################################
# Monitor: CONRAC 7351
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1280x1024" 110 1280 1472 1568 1728 1024 1026 1029 1061
###############################################################################
# Monitor: CTX CMS-1561
# Contributor: Steve Forsythe (forsse@meaddata.com)
# Last Edit Date: 11/22/93
#
# name clock horizontal timing vertical timing flags
"800x600" 36 800 824 896 1024 600 601 603 625
"1024x768" 75 1024 1072 1216 1352 768 769 775 806
###############################################################################
# Monitor: CTX 1760DF
# Contributor: Thomas Dunbar [tdunbar@vtaix.cc.vt.edu]
# Last Edit Date: 5/1/93
#
# name clock horizontal timing vertical timing flags
"1024x800" 80 1024 1048 1296 1320 800 800 808 818
###############################################################################
# Monitor: CTX SVGA model CVP-5468
# Contributor: Tim Peiffer [peiffer@cs.umn.edu]
# Last Edit Date: 1/27/92
#
# name clock horizontal timing vertical timing flags
"1024x768i" 40 1024 1064 1224 1264 768 777 785 817 Interlace
###############################################################################
# Monitor: CTX SVGA model CVP-5468
# Contributor: Bruce A Morley [bam@world.std.com]
# Last Edit Date: 5/28/93
#
# name clock horizontal timing vertical timing flags
"512x384" 25.2 512 528 624 648 384 384 390 415
"560x420" 28.3 560 592 712 744 420 420 425 452
"624x468" 28.3 624 632 728 744 468 468 470 490
"760x570" 28.3 760 776 912 952 570 570 570 590
"1024x768i" 45 1024 1064 1224 1264 768 777 785 817 Interlace
###############################################################################
# Monitor: CTX SVGA CVP-5468
# Contributor: Kent Hamilton [kenth@hns.st-louis.mo.US]
# Last Edit Date: 11/18/93
#
# name clock horizontal timing vertical timing flags
"1024x768i" 40 1024 1064 1224 1264 768 773 781 813 Interlace
###############################################################################
# Monitor: CTX SVGA model CVP-5468NI
# Contributor: Brendan Boerner [bboerner@novell.com]
# Last Edit Date: 10/29/92
#
# name clock horizontal timing vertical timing flags
"1024x768" 62 1024 1072 1296 1328 768 773 780 806
###############################################################################
# Monitor: CTX SVGA model CVP-546NI
# Contributor: Al Petrofsky [al@imdvlf.acuson.com]
# Last Edit Date: 6/11/92
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 664 760 800 480 491 493 525
"800x600" 36 800 824 896 1024 600 601 603 625
40 800 840 968 1056 600 601 605 628
"1024x768" 65 1024 1088 1200 1328 768 783 789 818
###############################################################################
# Monitor: Data General 6628
# Contributor: J"org Wunsch [joerg_wunsch@uriah.sax.de]
# Last Edit Date: 11/19/93
#
# name clock horizontal timing vertical timing flags
"640x480t" 25 640 680 768 800 480 491 493 525
"640x480+" 28 640 672 760 816 480 491 493 525
###############################################################################
# Monitor: DEC PC7XV-DE
# Contributor: Eric Hvozda [ack@clark.net]
# Last Edit Date: 2/20/94
#
# name clock horizontal timing vertical timing flags
"640x350" 25 640 656 784 800 350 385 386 449
"640x400" 25 640 648 776 800 400 412 416 449
"640x480" 31 640 664 704 832 480 489 492 520
"800x600" 50 800 856 976 1040 600 637 643 666 +hsync +vsync
"1024x768" 75 1024 1048 1184 1320 768 771 790 811 -hsync -vsync
###############################################################################
# Monitor: DEC VR290-DA
# Contributor: Paul Nixon [pnixon@ccd.harris.com]
# Last Edit Date: 12/13/93
#
# name clock horizontal timing vertical timing flags
1024x768 75 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
###############################################################################
# Monitor: DEC VRC16
# Contributor: Jack Coyote [uphrrmk@gemini.oscs.montana.edu]
# Last Edit Date: 6/15/93
#
# name clock horizontal timing vertical timing flags
"904x675" 45 904 951 1124 1192 675 690 693 729
###############################################################################
# Monitor: DEC VRC16
# Contributor: Peter Brouwer [pb@idca.tds.philips.nl]
# Last Edit Date: 6/18/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 768 800 480 490 492 525
"984x731" 62 984 992 1080 1280 731 735 739 767
"984x762" 62 984 1040 1104 1280 762 790 800 820
"1024x768i" 45 1024 1064 1224 1264 768 777 785 817 Interlace
"1024x768" 62 1024 1096 1160 1328 768 776 778 808
"1088x768" 62 1088 1224 1288 1328 768 776 778 808
###############################################################################
# Monitor: Dell VC-10C
# Contributor: Adam Harris [harris@cs.uchicago.edu]
# Last Edit Date: 10/17/93
#
# name clock horizontal timing vertical timing flags
"640x480" 45 640 672 722 832 480 485 487 505
"640x490" 45 640 672 722 832 490 490 492 512
"712x544" 45 712 778 840 912 544 554 557 580
"728x546" 45 728 760 864 928 546 548 551 570
###############################################################################
# Monitor: Dell UltraScan FS17-EZ Model VC7EN
# Contributor: James Hawtin [J.W.Hawtin@lut.ac.uk]
# Last Edit Date: 4/13/94
#
# name clock horizontal timing vertical timing flags
"640x480" 31.5 640 664 704 832 480 489 492 520
"800x600" 40 800 848 1000 1056 600 605 607 633
"1024x768" 75 1024 1048 1184 1328 768 771 777 806
"1152x900" 80 1152 1200 1280 1528 900 900 903 930
###############################################################################
# Monitor: EDGE/MAG 1564NI
# Contributor: Analytical Methods [ami@nwnet.net]
# Last Edit Date: 2/9/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 768 800 480 490 492 525
"800x600" 36 800 824 896 1024 600 601 603 625
"1024x768" 80 1024 1072 1296 1320 768 772 774 803
###############################################################################
# Monitor: EIZO/Nanao 8060i
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1024x768" 64 1024 1040 1048 1296 768 781 792 826
###############################################################################
# Monitor: EIZO/Nanao 8060s
# Contributor: Holger Veit [veit@du9ds3.uni-duisburg.de]
# Last Edit Date: 9/22/92
#
# name clock horizontal timing vertical timing flags
"800x600" 41 800 904 1064 1168 600 603 609 630
"848x600" 41 848 878 1040 1120 600 604 611 630
###############################################################################
# Monitor: EIZO/Nanao 9070s
# Contributor: Steinthor Bjarnason [stb@isbank.is]
# Last Edit Date: 12/9/91
#
# name clock horizontal timing vertical timing flags
"1024x768" 65 1024 1072 1176 1272 768 778 779 804
75 1024 1072 1176 1272 768 778 779 804
"1152x900i" 75 1152 1184 1288 1360 900 898 929 939 Interlace
###############################################################################
# Monitor: EIZO/Nanao 9070s
# Contributor: Arnd Gehrmann [arnd@zeus.informatik.rwth-aachen.de]
# Last Edit Date: 9/6/92
#
# name clock horizontal timing vertical timing flags
"640x480" 40 640 672 768 800 480 490 492 525
"800x600" 43 800 840 976 1010 600 610 643 650
"1024x768" 63 1024 1096 1100 1280 768 791 795 829
"1024x768i" 63 1024 1096 1100 1280 768 775 795 829 Interlace
"1152x900i" 63 1152 1170 1370 1380 900 890 929 939 Interlace
###############################################################################
# Monitor: EIZO/Nanao 9070s
# Contributor: Paul De Bra [debra@win.tue.nl]
# Last Edit Date: 8/28/93
#
# name clock horizontal timing vertical timing flags
"640x480" 28 640 672 768 784 480 490 492 525
"800x600" 45 800 832 942 966 600 600 609 631
"1024x768i" 62 1024 1064 1224 1240 768 777 785 817 Interlace
"1024x768" 62 1024 1100 1204 1304 768 778 783 810
"1152x900i" 62 1152 1192 1296 1408 900 909 917 961 Interlace
"1280x1024i" 62 1280 1320 1440 1540 1024 1025 1037 1065 Interlace
###############################################################################
# Monitor: EIZO/Nanao 9070u
# Contributor: David Wexelblat [dwex@xfree86.org]
# Last Edit Date: 10/14/91
#
# name clock horizontal timing vertical timing flags
"640x480" 40 640 672 768 800 480 490 492 525
"800x600" 45 800 848 960 1008 600 603 620 640
"1024x768" 65 1024 1088 1224 1304 768 772 788 824
"1152x900i" 75 1152 1224 1384 1504 900 905 923 965 Interlace
###############################################################################
# Monitor: EIZO/Nanao 9070u
# Contributor: Thomas M. Hoberg [tmh@first.gmd.de]
# Last Edit Date: 2/23/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 768 800 480 490 492 525
"1024x768" 65 1024 1088 1224 1304 768 772 788 824
"1152x900i" 65 1152 1192 1296 1408 900 909 917 961 Interlace
"1280x1024i" 65 1280 1320 1440 1540 1024 1025 1037 1065 Interlace
###############################################################################
# Monitor: EIZO/Nanao 9080i
# Contributor: Scott Everden [scott@unixland.natick.ma.us]
# Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"640x480" 28 640 672 768 800 480 490 492 525
"800x600" 50 800 820 860 1028 600 608 610 633
"1024x768" 72 1024 1064 1176 1300 768 778 793 806
85 1024 1040 1112 1328 768 804 809 859
"1152x900i" 64 1152 1184 1288 1400 900 904 933 943 Interlace
"1280x1024" 110 1280 1296 1408 1696 1024 1034 1044 1081
###############################################################################
# Monitor: EIZO/Nanao 9400i
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1024x768" 63 1024 1064 1104 1280 768 780 795 829
85 1024 1072 1120 1328 768 796 801 853
"1280x1024" 110 1280 1328 1392 1712 1024 1027 1032 1071
###############################################################################
# Monitor: EIZO/Nanao 9500
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1024x768" 64 1024 1072 1088 1280 768 787 798 832
"1280x1024" 110 1280 1312 1408 1696 1024 1043 1053 1081
###############################################################################
# Monitor: EIZO/Nanao 550i
# Contributor: Bill Broadley [broadley@neurocog.lrdc.pitt.edu]
# Last Edit Date: 11/22/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 80 1024 1040 1080 1374 768 769 771 790
###############################################################################
# Monitor: EIZO/Nanao F550i
# Contributor: Mark Weaver [Mark_Weaver@brown.edu]
# Last Edit Date: 11/24/93
#
# name clock horizontal timing vertical timing flags
"800x600" 45 800 856 976 1040 600 637 643 666
"1024x768" 75 1024 1048 1184 1328 768 771 777 806
"1152x900i" 80 1152 1168 1384 1440 900 901 907 945 Interlace
"1280x1024i" 80 1280 1296 1512 1568 1024 1025 1037 1165 Interlace
###############################################################################
# Monitor: EIZO/Nanao F550i-M
# Contributor: Michael Hirsch [mike@rolivaw.pr.net.ch]
# Last Edit Date: 3/22/93
#
# name clock horizontal timing vertical timing flags
"800x600" 50 800 816 912 976 600 610 614 628
"1024x768" 80 1024 1088 1216 1344 768 778 782 806
"1152x900" 80 1152 1200 1312 1528 900 910 916 930
###############################################################################
# Monitor: EIZO/Nanao T550i-M
# Contributor: Holger Wirtz [chick@midips.in-berlin.de]
# Last Edit Date: 02/25/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 75 1024 1120 1304 1328 768 771 777 806
###############################################################################
# Monitor: EIZO/Nanao T560i
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1024x768" 63 1024 1096 1136 1280 768 791 795 829
85 1024 1112 1168 1328 768 804 809 853
"1280x1024" 110 1280 1424 1488 1712 1024 1038 1043 1071
135 1280 1424 1504 1704 1024 1028 1033 1056
###############################################################################
# Monitor: EIZO/Nanao T560i
# Contributor: Ronald D. Hindmarsh [ronald@cs.tu-berlin.de]
# Last Edit Date: 5/1/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 768 800 480 490 492 509
"1024x768" 80 1024 1056 1080 1328 768 776 786 800
120 1024 1056 1080 1328 768 776 786 800
###############################################################################
# Monitor: EIZO/Nanao T560i
# Contributor: Raymond Nijssen [raymond@woensel.es.ele.tue.nl]
# Last Edit Date: 11/23/93
#
# name clock horizontal timing vertical timing flags
"1152x910" 89.8 1152 1256 1272 1424 910 907 912 929
###############################################################################
# Monitor: EIZO/Nanao T560iT92
# Contributor: Norbert Distler [norbert@physik.tu-muenchen.de]
# Last Edit Date: 11/24/93
#
# name clock horizontal timing vertical timing flags
"800x600" 56 800 856 976 1040 600 637 643 666
###############################################################################
# Monitor: EIZO/Nanao T660i
# Contributor: Ng Pheng Siong [ngps@stargate.np.ac.sg]
# Last Edit Date: 3/20/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 80 1024 1088 1216 1344 768 777 782 810
###############################################################################
# Monitor: ESCOMM 15"
# Contributor: Hartmut Kuehn Allgemeine Box IET
# [KUEHNNTE@Rcms1.urz.tu-dresden.de]
# Last Edit Date: 1/13/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 648 696 776 480 490 492 525
28 640 672 808 832 480 490 492 525
"800x600" 35 800 896 984 992 600 608 610 633
40 800 848 984 1032 600 608 610 633
45 800 896 984 1000 600 608 610 633
"816x607" 50 816 824 960 1040 607 608 610 633
"1024x768i" 45 1024 1248 1312 1328 768 771 777 807 Interlace
"1024x768" 65 1024 1048 1304 1356 768 771 777 806
72 1024 1112 1256 1296 768 771 777 806
"1096x822" 80 1096 1112 1368 1384 822 830 840 876
###############################################################################
# Monitor: ESCOM CSU5977L-E
# Contributor: Paul Seelig <pseelig@goofy.zdv.Uni-Mainz.de>
# Last Edit Date: 97-10-20
#
# name clock horizontal timing vertical timing flags
"888x664" 72.16 888 936 1072 1216 664 668 675 695
"920x690" 64.98 920 984 1024 1192 690 692 695 716 -hsync -vsync
"920x690" 65.03 920 980 1020 1188 690 692 695 712 -hsync -vsync
"1152x864" 50 1152 1188 1372 1388 864 865 874 899 interlace
"1152x900" 65 1152 1172 1316 1436 900 901 907 947 interlace
###############################################################################
# Monitor: ESCOM (Liberty?) 20" ES8923MNR
# Contributor: Guido Kueppers ^[Kueppers@uni-bonn.de|
# Last Edit Date: 11/17/93
#
# name clock horizontal timing vertical timing flags
"1152x900" 80 1152 1184 1264 1408 900 905 908 936
"1184x884" 80 1184 1216 1296 1460 884 884 888 913
###############################################################################
# Monitor: Everex Eversync/VGA
# Contributor: Dan Ellison [dan@dribble.c-mols.siu.edu]
# Last Edit Date: 2/20/92
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 664 760 800 480 491 493 525
30 640 664 704 832 480 489 492 520
"800x600" 36 800 816 952 1056 600 608 610 633
36 800 832 966 966 600 600 609 631
40 800 864 896 1008 600 600 606 624
40 800 872 968 1104 600 600 606 624
"808x608" 40 808 849 977 1066 606 607 609 634
"832x624" 40 832 873 1001 1090 624 625 627 651
###############################################################################
# Monitor: Gateway 2000 Crystal Scan NI (Mag Computronics 1448)
# Contributor: Thomas Naughton [naughton@chinet.chi.il.us]
# Last Edit Date: 10/17/91
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 768 800 480 490 492 525
"800x600" 50 800 864 970 1056 600 608 615 633
"1152x900i" 68 1152 1172 1288 1368 900 909 933 937 Interlace
###############################################################################
# Monitor: Gateway 2000 Crystal Scan NI (Mag Computronics 1448)
# Contributor: Jim Bray [jb@tinuviel.cs.wcu.edu[
# Last Edit Date: 6/16/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 65 1024 1064 1272 1304 768 768 789 789
###############################################################################
# Monitor: Gateway 2000 Crystal Scan
# Contributor: John LoSecco [losecco@undpdk.hep.nd.edu]
# Last Edit Date: 10/20/91
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 656 752 800 480 490 492 525
"800x600" 36 800 808 944 984 600 608 612 633
"1024x768i" 50 1024 1024 1216 1312 768 768 779 809 Interlace
"1152x900i" 65 1152 1200 1448 1664 900 900 912 947 Interlace
###############################################################################
# Monitor: Gateway 2000 Crystal Scan 1024NI
# Contributor: [reinert@lilac.cs.odu.edu]
# Last Edit Date: 5/4/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 664 760 800 480 491 493 525
"800x600" 50 800 856 976 1040 600 600 606 625
"1024x768" 65 1024 1096 1264 1344 768 771 777 806
###############################################################################
# Monitor: Gateway 2000 Crystal Scan 1024NI
# Contributor: Kent Hamilton [kenth@hns.st-louis.mo.US]
# Last Edit Date: 11/18/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 65 1024 1088 1256 1328 768 771 777 806
"1120x840i" 50 1120 1152 1325 1440 840 859 893 915
###############################################################################
# Monitor: Gateway 2000 (MAG) Crystal Scan 1572 FS
# Contributor: Bill C. Riemers [bcr@physics.purdue.edu]
# Last Edit Date: 5/4/93
#
# name clock horizontal timing vertical timing flags
"800x600" 51 800 800 1000 1000 600 600 606 616
65 800 824 944 1032 600 600 606 624
"1024x768" 65 1024 1024 1264 1264 768 770 788 792
75 1024 1048 1184 1288 768 773 777 806
"1152v910" 80 1152 1176 1424 1424 910 910 924 936
80 1152 1176 1272 1432 910 920 930 950
###############################################################################
# Monitor: GraphTEC CD2060
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1280x1024" 110 1280 1440 1568 1696 1024 1027 1029 1081
###############################################################################
# Monitor: Hitachi 20MVX
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1280x1024" 110 1280 1296 1512 1664 1024 1032 1038 1072
###############################################################################
# Monitor: Hitachi CM2073A-301
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1280x960" 110 1280 1464 1616 1728 960 969 985 1061
###############################################################################
# Monitor: Hitachi 20S
# Contributor: Rich Murphey [rich@rice.edu]
# Contributor: Rod Grimes [rgrimes@freefall.cdrom.com]
# Contributor: David Greenman [davidg%implode@percy.rain.com]
# Last Edit Date: 11/20/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 74 1024 1040 1200 1300 768 772 777 809
"1152x900" 85 1152 1184 1376 1464 900 905 923 955
"1280x960" 108 1280 1288 1400 1620 960 961 979 1012
"1280x1024" 110 1280 1288 1500 1688 1024 1026 1031 1077
###############################################################################
# Monitor: Hitachi HM-4119
# Contributor: Todd Pfaff [todd@flex.eng.mcmaster.ca]
# Last Edit Date: 11/19/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 80 1024 1104 1232 1328 768 769 777 817 -hsync -vsync
composite
"1152x900" 92 1152 1232 1376 1456 900 901 909 945 -hsync -vsync
composite
###############################################################################
# Monitor: IBM 8514-001
# Contributor: Mark Petrovic [petrovic@watson.ibm.com]
# Last Edit Date: 5/11/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 768 800 480 490 492 525
"1024x768i" 45 1024 1040 1184 1272 768 774 776 813 Interlace
###############################################################################
# Monitor: IDEKIiyama
# Contributor: Nicolai Langfeldt [janl@ifi.uio.no]
# Comments: Max 57KHz horizontal refresh
# Last Edit Date: 8/11/92
#
# name clock horizontal timing vertical timing flags
"640x480" 35 640 664 760 800 480 491 493 525
"1024x768" 70 1024 1056 1232 1264 768 768 772 806
72 1024 1056 1232 1264 768 768 772 806
"1272x824" 91 1272 1432 1520 1600 824 824 830 865
"1120x753" 80 1120 1184 1264 1400 753 753 757 791
"1120x840" 80 1120 1184 1264 1400 840 840 844 882
"1144x858" 82 1144 1184 1264 1432 858 858 862 900
"1152x900" 80 1152 1200 1280 1440 900 900 903 930
"1184x884" 80 1184 1216 1296 1460 884 884 888 913
###############################################################################
# Monitor: IDEKIiyama MF-5217
# Contributor: Jun Arihara[j_ariha@hoffman.cc.sophia.ac.jp]
# Takahiro Noguchi[Takahiro.Noguchi@Japan.Sun.COM]
# Last Edit Date: 2/20/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 664 760 800 480 491 493 525
25 640 672 768 800 480 490 492 525
28 640 672 768 800 480 490 492 525
31 640 664 704 832 480 489 492 520
"800x600" 36 800 816 952 1056 600 608 610 633
39 800 864 896 1008 600 600 606 624
40 800 840 968 1056 600 601 605 628
45 800 824 960 976 600 600 602 612
50 800 856 976 1040 600 637 643 666
"920x690" 62 920 952 1088 1168 690 688 718 724
"1024x768i" 44 1024 1040 1216 1264 768 777 785 817 Interlace
44 1024 1064 1224 1264 768 777 785 817 Interlace
45 1024 1064 1224 1264 768 777 785 817 Interlace
50 1024 1064 1224 1264 768 776 778 808 Interlace
"1024x768" 44 1024 1040 1216 1264 768 777 785 817
44 1024 1064 1224 1264 768 777 785 817
45 1024 1064 1224 1264 768 776 778 808
50 1024 1064 1224 1264 768 776 778 808
50 1024 1072 1176 1272 768 778 779 804
62 1024 1096 1272 1328 768 776 778 808
62 1024 1072 1176 1272 768 778 779 804
62 1024 1092 1220 1344 768 786 791 810
62 1024 1072 1200 1240 768 766 782 786
65 1024 1032 1176 1344 768 771 777 806
85 1024 1032 1152 1360 768 784 787 823
"1152x900i" 62 1152 1184 1288 1360 900 898 929 939 Interlace
"1280x1024i" 80 1280 1296 1512 1568 1024 1025 1037 1165 Interlace
"1280x1024" 110 1280 1328 1512 1712 1024 1025 1028 1054
135 1280 1312 1456 1712 1024 1027 1030 1064
###############################################################################
# Monitor: IDEK MC 2185
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1280x1024" 135 1280 1280 1408 1680 1024 1029 1032 1071
144 1280 1312 1456 1760 1024 1036 1039 1091
###############################################################################
# Monitor: IDEK MF 5421
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1024x768" 64 1024 1024 1160 1280 768 798 807 831
85 1024 1032 1160 1328 768 807 822 853
"1280x1024" 110 1280 1328 1520 1728 1024 1022 1033 1061
135 1280 1344 1424 1688 1024 1028 1037 1066
144 1280 1312 1456 1760 1024 1036 1039 1091
###############################################################################
# Monitor: IDEK Iiyama MF-8617 Vision Master
# Contributor: Gunar Schorcht [schorcht@theoinf.tu-ilmenau.de]
# Comments: max 86kHz horizontal refresh
# Last Edit Date: 07/14/94
#
# Mode Refresh(Hz) Hor.Sync(kHz) Clock(MHz)
# ------------------------------------------------------------------------
# 640x480 72 37.9 31.5
# 800x600 71 50.0 50.0
# 1024x768 75 62.5 85.0
# 1152x900 75 71.0 110.0
# 1280x1024 61 64.3 110.0
# 1280x1024 74 78.8 135.0
#
# name clock horizontal timing vertical timing flags
"640x480" 31.5 640 664 704 832 480 489 492 520
"800x600" 50 800 840 960 1000 600 637 643 700
"1024x768" 85 1024 1032 1152 1360 768 784 787 823
"1152x900" 110 1152 1212 1500 1552 900 910 915 945
"1280x1024" 110 1280 1328 1512 1712 1024 1025 1028 1054
135 1280 1312 1456 1712 1024 1027 1030 1064
###############################################################################
# Monitor: IIYAMA Vision Master 500 (MF-8721)
# Contributor: Gaetan Soltesz <sg907924@stmail.staffs.ac.uk>
# Last Edit Date: 97-11-10
#
# name clock horizontal timing vertical timing flags
"640x480" 45.8 640 672 768 864 480 488 494 530 -HSync -VSync
"800x600" 69.65 800 864 928 1088 600 604 610 640 +HSync +VSync
"1024x768" 115.5 1024 1056 1248 1440 768 771 781 802 +HSync +VSync
"1152x864" 137.65 1152 1184 1312 1536 864 866 885 902 +HSync +VSync
"1280x1024" 181.75 1280 1312 1440 1696 1024 1031 1046 1072 +HSync +VSync
"1600x1200" 220 1600 1616 1808 2080 1200 1204 1207 1244 +HSync +VSync
###############################################################################
# Monitor: Interquadram CA2020
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1280x1024" 110 1280 1512 1640 1736 1024 1032 1046 1056
###############################################################################
# Monitor: INTRA CM-14[2-3]3
# Contributor: Yasunari Momoi[s905571@educ.info.kanagawa-u.ac.jp]
# Last Edit Date: 2/19/93
#
# name clock horizontal timing vertical timing flags
"888x618" 40 888 912 1072 1152 618 621 623 661
###############################################################################
# Monitor: Kuo Feng Corporation CK-1405
# Contributor: Brad Midgley [bmidgley@peruvian.cs.utah.edu]
# Last Edit Date: 5/1/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 768 800 480 480 484 504
"744x558" 32 744 776 896 928 558 558 563 585
"824x618" 36 824 856 1000 1032 618 618 623 648
"1024x768" 65 1024 1092 1220 1344 768 786 791 810
"1080x810" 65 1080 1096 1336 1352 810 810 817 850
###############################################################################
# Monitor: Leading Edge CMC-1414BA
# Contributor: Keith Walker [kew@timesink.spk.wa.us]
# Last Edit Date: 5/17/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 65 1024 1056 1208 1272 768 774 777 802
"1108x796" 65 1108 1136 1288 1344 796 796 799 814
###############################################################################
# Monitor: MAG15F
# Contributor: John Brezak [brezak@apollo.hp.com]
# Last Edit Date: 12/6/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 664 760 800 480 491 493 525
31 640 664 704 832 480 489 492 520
"800x600" 36 800 824 896 1024 600 601 603 625
40 800 840 968 1056 600 601 605 628
50 800 856 976 1040 600 637 643 666
"1024x768i" 44 1024 1040 1216 1264 768 777 785 817 Interlace
"1024x768" 75 1024 1056 1204 1324 768 774 803 806
###############################################################################
# Monitor: MAG 1564NI
#
# See entry under "EDGE/MAG 1564NI" above.
###############################################################################
# Monitor: MAG Innovision LX1564 15"
# Contributor: Chris Metcalf [metcalf@lcs.mit.edu]
# Last Edit Date: 7/22/93
#
# name clock horizontal timing vertical timing flags
"640x480" 41 640 656 680 792 480 480 481 500
"800x600" 45 800 808 840 992 600 601 603 619
"1024x768" 80 1024 1040 1080 1374 768 769 771 790
"1152x900" 80 1152 1184 1224 1448 900 901 903 922
90 1152 1216 1256 1480 900 900 901 925
###############################################################################
# Monitor: MAG MX-17H
# Contributor: Richard Gooch [rgooch@atnf.csiro.au]
# Last Edit Date: 11/19/93
#
# name clock horizontal timing vertical timing flags
"1152x900" 95 1152 1152 1168 1472 900 900 931 939
"1152x900" 95 1152 1152 1192 1472 900 900 911 925
"1152x900f" 110 1152 1152 1168 1616 900 900 911 925
###############################################################################
# Monitor: MAG MX-17H
# Contributor: Dave Truckenmiller [trucken@cs.umn.edu]
# Last Edit Date: 11/19/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 768 800 480 490 492 525
"800x600" 47 800 800 944 1016 600 600 603 617
###############################################################################
# Monitor: MAG MX-17H
# Contributor: Jordan K. Hubbard [jkh@whisker.lotus.ie]
# Last Edit Date: 11/23/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 74 1024 1040 1200 1300 768 772 777 809
"1200x900" 105 1200 1208 1364 1572 900 905 923 955
###############################################################################
# Monitor: Mag Technology Co. PMV1448
# Contributor: Mark Petrovic [petrovic@watson.ibm.com]
# Last Edit Date: 5/12/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 752 800 480 481 483 520
"1024x768" 65 1024 1120 1328 1360 768 769 772 796
###############################################################################
# Monitor: Magnavox CM9089-BE41
# Contributor: Joseph P. DeCello III [jpd@cad.msu.edu]
# Last Edit Date: 5/2/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 768 800 480 490 492 525
"800x600" 36 800 824 896 1024 600 601 603 625
###############################################################################
# Monitor: MediaScan 5A
# Contributor: Neville H. Chandler [nhc@mtdcr.mt.att.com]
# Last Edit Date: 10/13/92
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 664 760 800 480 491 493 525
"840x615" 36 840 840 992 1024 615 617 620 630
"1024x593" 45 1024 1040 1216 1280 593 596 602 610
"1024x768" 65 1024 1032 1176 1344 768 771 777 806
###############################################################################
# Monitor: MICROVITEC Definition 20
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1024x768" 64 1024 1176 1224 1336 768 770 774 798
"1280x1024" 110 280 1504 1600 1696 1024 1034 1036 1081
###############################################################################
# Monitor: Mitsubishi Diamond Scan
# Contributor: Wei Jen Yeh [yeh@cs.purdue.edu]
# Last Edit Date: 5/21/92
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 768 800 480 490 492 525
"800x600" 36 800 851 987 1056 600 608 610 633
"1000x750i" 45 1000 1040 1208 1248 750 750 756 788 Interlace
###############################################################################
# Monitor: Mitsubishi HL 6915
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1024x768" 63 1024 1080 1208 1336 768 772 776 796
"1280x1024" 110 1280 1344 1536 1744 1024 1031 1034 1060
###############################################################################
# Monitor: Mitsubishi HL 6915
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1024x768" 64 1024 1072 1088 1280 768 787 798 832
"1280x1024" 110 1280 1312 1408 1696 1024 1043 1053 1081
###############################################################################
# Monitor: Mitsubishi HL 7925
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1280x1024" 135 1280 1312 1408 1728 1024 1026 1029 1054
###############################################################################
# Monitor: Mitsubishi HL 7955
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1024x768" 63 1024 1072 1120 1280 768 785 795 829
85 1024 1112 1168 1328 768 798 809 853
"1280x1024" 110 1280 1408 1488 1712 1024 1029 1043 1071
135 1280 1312 1456 1704 1024 1028 1033 1056
###############################################################################
# Monitor: Moniterm/Amtron CD19
# Contributor: Ari Lemke [arl@cs.hut.fi]
# Last Edit Date: 8/22/93
#
# name clock horizontal timing vertical timing flags
"1136x766" 72.16 1136 1216 1312 1480 766 769 772 812
###############################################################################
# Monitor: MTC EM 1428
# Contributor: Steven Hessing [stevenh@sci.kun.nl]
# Last Edit Date: 2/15/93
#
# name clock horizontal timing vertical timing flags
"832x624" 38 832 864 1016 1048 624 624 630 655
###############################################################################
# Monitor: Nanao 8060i
# Monitor: Nanao 9070s
# Monitor: Nanao 9070u
# Monitor: Nanao 9080i
# Monitor: Nanao 9400i
# Monitor: Nanao 9500
# Monitor: Nanao F550i
# Monitor: Nanao F550i-M
# Monitor: Nanao T550i-M
# Monitor: Nanao T560i
# Monitor: Nanao T560iT92
# Monitor: Nanao T660i
#
# See entries under "EIZO" above.
###############################################################################
# Monitor: NEC 2A
# Contributor: Jui-Lin Lu [jlu@cs.umr.edu]
# Last Edit Date: 10/6/92
#
# name clock horizontal timing vertical timing flags
"800x600" 40 800 892 1044 1136 600 603 609 630
###############################################################################
# Monitor: NEC 2A
# Contributor: Jim Niemira [niemira@fstrf.org]
# Last Edit Date: 5/1/93
#
# name clock horizontal timing vertical timing flags
"640x480" 28 640 676 776 812 480 480 485 505
###############################################################################
# Monitor: NEC 3D
# Contributor: Michael Umansky [misha@stratus.swdc.com]
# Last Edit Date: 10/30/91
#
# name clock horizontal timing vertical timing flags
"640x500" 32 640 728 768 800 500 506 492 533
"800x600" 45 800 912 974 998 600 600 609 631
"840x640" 45 840 936 942 1038 640 624 625 639
"900x690" 60 900 1024 1080 1112 690 690 695 720
"1056x792i" 45 1056 1072 1224 1264 792 785 785 817 Interlace
###############################################################################
# Monitor: NEC 3D
# Contributor: Alfonso Marmora [ajm@icc.com]
# Last Edit Date: 12/12/91
#
# name clock horizontal timing vertical timing flags
"496x372" 25 496 568 576 624 372 372 378 390
"552x414" 28 552 632 640 696 414 414 420 434
"712x534" 36 712 808 824 896 534 534 535 560
"800x600" 40 800 904 920 1000 600 600 601 630
"896x672" 45 896 1008 1032 1120 672 672 674 705
"992x744" 50 992 1112 1152 1248 744 744 746 781
"1296x972" 65 1296 1448 1496 1624 972 972 972 1020
###############################################################################
# Monitor: NEC 3D
# Contributor: Kevin Cummings [cummings@kjc386.framingham.ma.us]
# Last Edit Date: 8/25/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 664 760 800 480 491 493 525
"704x528" 28 704 744 848 888 528 534 536 554
"728x534" 28 728 752 856 888 534 534 536 554
"800x600" 36 800 824 896 1024 600 601 603 625
###############################################################################
# Monitor: NEC 3FGx
# Contributor: Rik Faith [faith@cs.unc.edu]
# Last Edit Date: 3/27/93
#
# name clock horizontal timing vertical timing flags
"800x600" 50 800 856 976 1040 600 637 643 693
"1024x768" 65 1024 1048 1184 1344 768 771 777 806
###############################################################################
# Monitor: NEC 4D
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1024x768" 64 1024 1144 1208 1320 768 778 782 808
85 1024 1200 1280 1424 768 793 814 851
###############################################################################
# Monitor: NEC 4D
# Contributor: Dave Barker [dbarker@mulga.awadi.com.au]
# Last Edit Date: 4/7/93
#
# name clock horizontal timing vertical timing flags
"800x600" 60 800 868 1050 1056 600 600 603 636
"1024x768" 60 1024 1056 1294 1296 768 776 778 808
"1152x900i" 60 1152 1232 1408 1456 900 908 912 965 Interlace
###############################################################################
# Monitor: NEC 4DS
# Contributor: Jim Bray [jb@cw.wcu.edu]
# Last Edit Date: 6/19/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 72 1024 1088 1264 1272 768 768 771 804
75 1024 1080 1264 1288 768 768 771 805
80 1024 1072 1288 1328 768 768 771 807
"1152x900" 80 1152 1216 1288 1416 900 900 903 920
###############################################################################
# Monitor: NEC 4FG
# Contributor: Gerco Ballintijn [bcballi@cs.vu.nl]
# Last Edit Date: 5/3/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 664 760 800 480 491 493 525
"800x600" 40 800 840 968 1056 600 601 605 628 -hsync +vsync
"1024x768i" 45 1024 1064 1224 1264 768 777 785 817 +hsync +vsync
"1024x768" 75 1024 1048 1184 1328 768 771 777 806 -hsync +vsync
###############################################################################
# Monitor: NEC 5D
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 3/29/91
#
# name clock horizontal timing vertical timing flags
"1024x768" 64 1024 1144 1208 1320 768 778 782 808
85 1024 1104 1200 1328 768 800 806 853
"1280x1024" 110 1280 1504 1608 1720 1024 1024 1029 1066
###############################################################################
# Monitor: NEC 5FG
# Contributor: Rick Richardson [rick@digibd.com]
# Last Edit Date: 3/12/92
#
# name clock horizontal timing vertical timing flags
"1152x900" 80 1152 1184 1264 1408 900 905 908 936
80 1152 1164 1244 1408 900 900 903 936
###############################################################################
# Monitor: NEC 5FG
# Contributor: Brian Smith [brians@rigel.cs.pdx.edu]
# Last Edit Date: 6/24/92
#
# name clock horizontal timing vertical timing flags
"640x480" 50 640 672 768 850 480 550 650 650
"1024x768" 72 1024 1032 1264 1272 768 786 791 810
"1152x900" 80 1152 1160 1376 1416 900 900 940 948
###############################################################################
# Monitor: NEC 5FG
# Contributor: [hedrick@cs.rutgers.edu]
# Last Edit Date: 8/29/92
#
# name clock horizontal timing vertical timing flags
"800x600" 56 800 800 800 980 600 603 609 625
"1024x768" 80 1024 1024 1024 1260 768 768 773 790
###############################################################################
# Monitor: NEC 5FG
# Contributor: [tim@hecate.astro.cf.ac.uk]
# Last Edit Date: 6/15/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 65 1024 1065 1065 1260 768 787 792 810
###############################################################################
# Monitor: NEC 5FG.
# Contributor: Hans Nasten [nasten@everyware.se]
# Last Edit Date: 11/18/93
#
# name clock horizontal timing vertical timing flags
"640x480" 32 640 684 724 832 480 489 492 520
"800x600" 50 800 856 976 1040 600 637 643 666
"1024x768" 75 1024 1032 1264 1272 768 786 791 810
###############################################################################
# Monitor: NEC 5FG (also works with MAG MX-17H)
# Contributor: Richard Gooch [rgooch@atnf.csiro.au]
# Last Edit Date: 11/19/93
#
# name clock horizontal timing vertical timing flags
"1152x900" 95 1152 1152 1192 1472 900 900 931 939
###############################################################################
# Monitor: NEC 5FGe
# Contributor: [skelton%jdp.uucp@dragon.com]
# Last Edit Date: 11/29/93
#
# name clock horizontal timing vertical timing flags
"640x480" 28.322 640 680 720 864 480 488 491 521
"800x600" 36 800 824 896 1024 600 601 603 625
"1024x768" 65 1024 1032 1176 1344 768 771 777 806 -hsync -vsync
###############################################################################
# Monitor: NEC 5FGp
# Contributor: Steven King [king@wildebeest.cig.mot.com]
# Last Edit Date: 3/7/94
#
# name clock horizontal timing vertical timing flags
"1152x900" 90 1152 1152 1208 1448 900 900 940 948
###############################################################################
# Monitor: NEC Multisync JC-14O1P3ED
# Contributor: Dirk Hohndel [hohndel@xfree86.org]
# Last Edit Date: 05/11/93
#
# name clock horizontal timing vertical timing flags
"800x600" 40 800 832 984 1016 600 600 608 630
"880x540" 45 880 896 1040 1144 540 546 548 561
"912x684" 45 912 944 1112 1144 684 684 691 718
"980x596" 50 984 1000 1160 1272 596 600 602 618
"976x560" 50 976 992 1160 1272 560 562 564 582
"1024x768i" 45 1024 1064 1224 1264 768 789 799 817 Interlace
###############################################################################
# Monitor: NEC Multisync II
# Contributor: Steve Hite [shite@sinkhole.unf.edu]
# Creator: Chin Fang [fangchin@leland.stanford.edu]
# Last Edit Date: 10/15/91
#
# name clock horizontal timing vertical timing flags
"640x480" 28 640 676 776 812 480 480 485 505
"752x564" 36 752 788 916 952 564 564 569 594
"800x600" 40 800 864 1000 1056 600 600 605 631
###############################################################################
# Monitor: NEC Multisync II
# Contributor: Steven H. Izen [steve@pitacat.math.cwru.edu]
# Last Edit Date: 1/26/93
#
# name clock horizontal timing vertical timing flags
"800x600" 40 800 816 944 1056 600 601 605 628
###############################################################################
# Monitor: ViewSonic 17
# Contributor: Steven Wallace [swallace@ece.uci.edu]
# Last Edit Date: 11/22/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 65 1024 1056 1296 1328 768 768 778 807
"1024x800" 94.6 1152 1184 1544 1576 800 801 808 845
###############################################################################
# Monitor: Packard Bell (model unknown)
# Contributor: E.J.McKernan [ejm@datalog.com]
# Last Edit Date: 12/16/91
#
# name clock horizontal timing vertical timing flags
"800x600" 36 800 820 952 1000 600 610 617 633
###############################################################################
# Monitor: Panasonic Panasync 1381
# Contributor: Jeff Michaud [michaud@cdsmn.mn.org]
# Last Edit Date: 12/9/91
#
# name clock horizontal timing vertical timing flags
"800x600" 40 800 824 1008 1016 600 608 610 631
###############################################################################
# Monitor: Panasonic PanaSync C1381
# Contributor: Shaun T. Erickson [ste@alux2.att.com]
# Last Edit Date: 1/21/92
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 680 776 800 480 491 493 525
"800x600" 36 800 848 920 1024 600 601 603 625
40 800 832 960 1056 600 601 605 628
"1024x768i" 45 1024 1064 1224 1264 768 777 785 817 Interlace
###############################################################################
# Monitor: Panasonic PanaSync C1391
# Contributor: Nathan Laredo [nathan@eas.gatech.edu]
# Last Edit Date: 12/9/92
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 688 760 800 480 491 493 525
"800x600" 40 800 840 968 1056 600 601 605 628
"1024x768i" 45 1024 1072 1176 1264 768 770 772 813 Interlace
"1024x1024i" 45 1024 1104 1176 1360 1024 1025 1029 1063 Interlace
###############################################################################
# Monitor: Panasonic TX 2002
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1280x1024" 100 1280 1488 1592 1744 1024 1027 1029 1051
###############################################################################
# Monitor: Philips 7CM3279 14" Super VGA 1024x768 interlaced
# Contributor: Rui Salgueiro [rps@mat.uc.pt]
# Last Edit Date: 29/12/92
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 680 776 800 480 491 493 525
25 640 672 768 800 480 490 492 525
"800x600" 36 800 848 920 1024 600 601 603 625
"840x630" 36 840 848 920 1024 630 631 633 655
"1024x768i" 45 1024 1064 1224 1264 768 777 785 817 Interlace
"1032x774i" 45 1032 1064 1224 1264 774 783 791 823 Interlace
###############################################################################
# Monitor: Philips 8CM3279 14" Super VGA 1024x768 NI
# Contributor: Rui Salgueiro [rps@mat.uc.pt]
# Last Edit Date: 5/4/93
#
# name clock horizontal timing vertical timing flags
"648x486" 25 648 672 768 800 486 496 498 525
"728x546" 45 728 784 904 928 546 557 560 592
45 728 784 904 928 546 548 551 570
"816x612" 50 816 880 1008 1040 612 623 626 658
"952x600b" 58 952 1032 1184 1200 600 611 614 646
"1064x796" 65 1064 1104 1280 1352 796 807 811 843
"1072x600" 65 1072 1144 1320 1352 600 611 614 646
"1072x804" 65 1072 1104 1280 1352 804 814 824 856
"1160x486" 45 1160 1208 1384 1440 486 496 498 525
###############################################################################
# Monitor: Philips C2064
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1280x1024" 110 1280 1520 1632 1720 1024 1031 1033 1066
###############################################################################
# Monitor: Philips PRO 7BM749 14" Mono VGA
# Contributor: Stephen Hocking [sgccseh@citecuc.citec.oz.au]
# Last Edit Date: 1/9/92
#
# name clock horizontal timing vertical timing flags
"704x480m" 28 704 784 792 888 480 484 512 536
###############################################################################
# Monitor: Qume QM835
# Contributor: Geraldo Veiga [ilan343@violet.berkeley.edu]
# Last Edit Date: 12/9/91
#
# name clock horizontal timing vertical timing flags
"1024x768i" 40 1024 1064 1224 1264 768 777 785 817 Interlace
###############################################################################
# Monitor: Royal Information Electronics XGA Multiscan CN-1470A
# Contributor: John Henders [jhenders@jonh.wimsey.bc.ca]
# Last Edit Date: 5/28/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 768 800 480 490 492 525
"800x600" 36 800 816 952 1056 600 608 610 633
"912x684" 45 912 944 1112 1144 684 684 691 718
"1024x768i" 44 1024 1064 1224 1264 768 777 785 817 Interlace
"1024x768" 64 1024 1030 1196 1264 768 778 779 804
###############################################################################
# Monitor: Royal Information Electronics DM1564
# Contributor: Georges Tomazi [tomazi@kralizec.zeta.org.au]
# Last Edit Date: 12/19/93
#
# name clock horizontal timing vertical timing flags
"640x480" 31.5 640 680 720 864 480 488 491 521
"800x600" 50 800 880 1000 1040 600 637 643 666 +hsync +vsync
"1024x768i" 44.9 1024 1056 1216 1264 768 776 784 817 Interlace
"1024x768" 72 1024 1048 1184 1280 768 778 784 806 -hsync -vsync
###############################################################################
# Monitor: Sampo AlphaScan Plus
# Contributor: Glenn Lai [glenn@cs.utexas.edu]
# Last Edit Date: 5/11/92
#
# name clock horizontal timing vertical timing flags
"1024x768" 62 1024 1064 1128 1280 768 772 776 808
###############################################################################
# Monitor: Samsung Sync Master 3 (14inch)
# Contributor: Pedro A.M. Vazquez [vazquez@iqm.unicamp.br]
# Last Edit Date: 12/12/92
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 664 760 800 480 491 493 525
"800x600" 36 800 816 996 1020 600 604 634 638
"1024x730" 50 1024 1040 1172 1320 730 731 735 755
###############################################################################
# Monitor: Samsung Sync Master 4 (17inch), Model CSA7571
# Contributor: Rick Calder [rick@rick.att.com]
# Peter Ziobrzynski [peter@modtor.uucp]
# Last Edit Date: 12/9/91
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 768 800 480 490 492 525
28 640 672 768 800 480 490 492 525
"800x600" 40 800 816 952 1056 600 608 610 633
"1024x768" 59 1024 1096 1272 1380 768 776 778 808
78 1024 1112 1298 1386 768 776 784 800
###############################################################################
# Monitor: SANTEC DMC2185
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1280x1024" 135 1280 1280 1408 1680 1024 1029 1032 1071
144 1280 1312 1456 1760 1024 1036 1039 1091
###############################################################################
# Monitor: Seiko CM 1440
# Contributor: Jeff Jennings [jennings@stortek.com]
# Last Edit Date: 12/9/91
#
# name clock horizontal timing vertical timing flags
"1024x768i" 45 1024 1064 1224 1264 768 777 785 817 Interlace
"1152x900i" 45 1152 1184 1288 1360 900 898 929 939 Interlace
###############################################################################
# Monitor: Seiko CM 1450
# Contributor: Les Johnson [les@ulysses.att.com]
# Last Edit Date: 5/11/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25.2 640 664 760 800 480 491 493 525
"800x600" 40 800 840 968 1056 600 601 605 628
"1024x768i" 44.9 1024 1040 1216 1264 768 777 785 817 Interlace
62 1024 1032 1168 1344 768 771 780 815 Interlace
"1024x768" 62 1024 1040 1184 1328 768 783 789 829
###############################################################################
# Monitor: Seiko CM 1450
# Contributor: Steve Kump [skump@panix.com]
# Last Edit Date: 11/04/93
#
# name clock horizontal timing vertical timing flags
"640x480" 31.5 640 680 720 832 480 489 491 519
"800x600" 50 800 816 936 1024 600 611 617 655
"1024x768i" 50 1024 1040 1200 1264 768 773 781 817 Interlace
"1024x900i" 65 1024 1074 1248 1392 900 901 905 955 Interlace
"1152x900i" 65 1152 1192 1402 1512 900 901 913 947 Interlace
###############################################################################
# Monitor: Seiko Instruments CM1760LR
# Contributor: Ed Hall [edhall@rand.org]
# Last Edit Date: 11/24/93
#
# name clock horizontal timing vertical timing flags
"640x480" 28 640 660 712 784 480 480 483 496
"800x600" 44 800 856 928 992 600 600 607 621
"1024x768" 72 1024 1072 1184 1306 768 771 777 796
"1152x900" 85 1152 1184 1296 1456 900 908 929 939
###############################################################################
# Monitor: Siemens C79145
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1280x1024" 110 1280 1472 1568 1728 1024 1027 1029 1061
###############################################################################
# Monitor: Sony CPD-1304
# Contributor: Mathew S Hayashi [mhayashi@ecn.purdue.edu]
# Last Edit Date: 3/3/93
#
# name clock horizontal timing vertical timing flags
"800x600" 45 800 840 992 1016 600 600 606 622
"1024x768" 62 1024 1032 1096 1272 768 768 772 792
###############################################################################
# Monitor: Sony CPD-1304
# Contributor: Alexander-James Annala [merlin@neuro.usc.edu]
# Last Edit Date: Jan 1, 1994
#
# name clock horizontal timing vertical timing flags
"1024x768" 75.40 1024 1032 1096 1272 768 768 772 792
###############################################################################
# Monitor: Sony CPD-1304
# Contributor: Ron Prichett [prichet@usceast.cs.scarolina.edu]
# Last Edit Date: 4/13/94
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 768 800 480 500 502 555
"800x600" 39 800 832 904 1008 600 610 612 655
"1024x768" 65 1024 1080 1258 1348 768 776 778 808
###############################################################################
# Monitor: Sony CPD-1404E (14") in AUTO LOCK mode
# Contributor: J. Schnitter [josch@pc.chemie.th-darmstadt.de]
# Last Edit Date: 5/6/92
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 672 768 800 480 490 492 525
"800x600" 36 800 825 900 985 600 600 609 631
"1024x768" 62 1024 1096 1272 1328 768 776 778 808
"1040x772" 62 1040 1110 1272 1328 772 780 780 820
###############################################################################
# Monitor: Sony CPD-1404S
# Contributor: Nils Rennebarth [nils@sonya.exp-math.uni-essen.de]
# Last Edit Date: 4/7/93
#
# name clock horizontal timing vertical timing flags
"800x600" 45 800 808 908 1000 600 607 612 645
"1024x768" 80 1024 1040 1288 1376 768 768 780 800
###############################################################################
# Monitor: Sony CPD-1430
# Contributor: Jerod Tufte [jet@b62528.studnet.cwru.edu]
# Last Edit Date: 4/13/94
#
# name clock horizontal timing vertical timing flags
"1024x768" 75 1024 1060 1300 1364 768 768 780 808
"1152x900" 80 1152 1176 1256 1440 900 900 903 930
###############################################################################
# Monitor: Sony CPD-1604S
# Contributor: Arthur W. Neilson III [art@pilikia.pegasus.com]
# Last Edit Date: 1/20/92
#
# name clock horizontal timing vertical timing flags
"1024x768" 75 1024 1096 1232 1312 768 768 776 808
###############################################################################
# Monitor: Sony GDM 1901
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1280x1024" 110 1280 1408 1600 1736 1024 1027 1030 1056
###############################################################################
# Monitor: Sony GDM 1932
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1024x768" 85 1024 1096 1144 1416 768 799 807 856
###############################################################################
# Monitor: Sony GDM 1934
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1280x1024" 135 1280 1312 1408 1704 1024 1032 1035 1071
144 1280 1344 1488 1808 1024 1025 1028 1062
###############################################################################
# Monitor: Sony GDM 1950
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1024x768" 85 1024 1032 1104 1360 768 786 790 832
"1280x1024" 110 1280 1344 1472 1728 1024 1035 1038 1061
###############################################################################
# Monitor: SuperView DX15F
# Contributor: Frode Roervik [froder@ifi.uio.no]
# Last Edit Date: 1/25/94
#
# name clock horizontal timing vertical timing flags
"1024x768" 75 1024 1096 1232 1312 768 768 776 808
75 1024 1048 1184 1328 768 771 777 806 -hsync +vsync
75 1024 1048 1184 1288 768 773 777 806
80 1024 1072 1288 1328 768 768 771 807
###############################################################################
# Monitor: SYNCO CM-14XV
# Contributor: Pedro R. Benito da Rocha [pedro@luna.gui.uva.es]
# Last Edit Date: 4/27/94
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 664 760 800 480 491 493 525
28 640 648 752 784 480 488 496 508
"800x600" 36 800 816 976 1008 600 602 610 628
"1024x768i" 44.9 1024 1048 1208 1264 768 776 784 817 interlace
###############################################################################
# Monitor: TARGA 1710 D
# Contributor: Helmut Geyer [geyer@kalliope.iwr.uni-heidelberg.de]
# Last Edit Date: 19/10/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 87 1024 1032 1152 1360 768 784 787 823
"1152x800" 97 1152 1200 1296 1496 800 805 816 849
###############################################################################
# Monitor: TATUNG CM-1498X
# Contributor: Per Lindqvist [pgd@compuram.bbt.se]
# Last Edit Date: 9/21/91
#
# name clock horizontal timing vertical timing flags
"640x400" 25 640 648 768 800 400 412 414 449
"640x480" 25 640 648 768 800 480 487 492 525
"800x600" 36 800 816 976 1008 600 602 610 628
"800x655" 36 800 816 976 1008 655 658 660 687
###############################################################################
# Monitor: Tatung CM14UAS
# Contributor: David McCullough [davidm@stallio.oz.au]
# Last Edit Date: 11/19/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 664 760 800 480 491 493 525
"800x600" 40 800 840 968 1056 600 601 605 628
"1024x768" 65 1024 1152 1184 1360 768 766 772 806
###############################################################################
# Monitor: TAXAN 990
# Contributor: Thomas Roell [roell@xinside.com]
# Last Edit Date: 03/29/91
#
# name clock horizontal timing vertical timing flags
"1280x1024" 110 1280 1472 1568 1728 1024 1026 1029 1061
###############################################################################
# Monitor: Taxan MultiVision 875 plus LR
# Contributor: Harald Koenig [koenig@tat.physik.uni-tuebingen.de]
# Last Edit Date: 11/25/93
#
# Horizontal frequency: 71990 Hz, vertical frequency: 90.7 Hz
# name clock horizontal timing vertical timing flags
"1024x768" 110 1024 1024 1104 1528 768 768 772 794
###############################################################################
# Monitor: TAXAN Ultravision 1095
# Contributor: Matti Aarnio [mea@utu.fi, mea@nic.funet.fi]
# Last Edit Date: 1/6/92
#
# name clock horizontal timing vertical timing flags
"1152x910" 72 1152 1240 1312 1544 910 925 940 955 -hsync -vsync
###############################################################################
# Monitor: ViewSonic 4
# Contributor: Scott Mitchell [smitchel@credit.erin.utoronto.ca]
# Last Edit Date: 12/3/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 656 752 800 480 490 492 525
"800x600" 36 800 824 896 1024 600 601 603 625
###############################################################################
# Monitor: ViewSonic 5e
#
# See entry for "AcerView 25 uvga" above.
###############################################################################
# Monitor: ViewSonic 6
# Contributor: [afgun@engin.umich.edu]
# Last Edit Date: 12/10/93
#
# name clock horizontal timing vertical timing flags
"640x480" 25 640 656 752 800 480 490 492 525
"800x600" 36 800 824 896 1024 600 601 603 625
"1024x768" 65 1024 1063 1271 1344 768 771 774 805
###############################################################################
# Monitor: ViewSonic 6e
# Contributor: Dennis T. Flahert [dennisf@denix.elk.miles.com]
# Last Edit Date: 5/10/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 65.1 1024 1024 1168 1256 768 768 774 812
###############################################################################
# Monitor: ViewSonic 7
# Contributor: Karel Zuiderveld [karel@cv.ruu.nl]
# Last Edit Date: 4/8/92
#
# name clock horizontal timing vertical timing flags
"1024x768" 62 1024 1064 1182 1238 768 776 778 808
###############################################################################
# Monitor: ViewSonic 7
# Contributor: Joe Kelsey [zircon!joe@uunet.uu.net]
# Last Edit Date: 5/4/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 65 1024 1080 1224 1344 768 776 778 808
###############################################################################
# Monitor: ViewSonic 7
# Contributor: Henry A Worth [haw30@ras.amdahl.com]
# Last Edit Date: 3/4/94
#
# name clock horizontal timing vertical timing flags
"640x480" 30 640 664 728 784 480 480 484 507
"800x600" 50 800 808 920 1032 600 600 610 635
"1024x768" 65 1024 1032 1208 1288 768 768 773 798
75 1024 1048 1184 1328 768 771 777 802
80 1024 1032 1216 1344 768 768 773 805
###############################################################################
# Monitor: ViewSonic 15
# Contributor: Frank Mayhar
# Last Edit Date: 12/13/93
#
# name clock horizontal timing vertical timing flags
"1024x768" 95 1024 1144 1264 1384 768 770 774 809
"1152x900" 110 1152 1284 1416 1536 900 902 905 941
"1280x1024" 110 1280 1416 1552 1696 1024 1026 1029 1061
###############################################################################
# Monitor: "Vobis"? Highscreen LE1024
# Contributor: Gertjan Akkerman ( akkerman@dutiba.twi.tudelft.nl )
# Last Edit Date: 11/19/1993
#
name clock horizontal timing vertical timing flags
"640x480" 25 640 664 760 800 480 491 493 525
"800x600" 36 800 824 896 1024 600 601 603 625
"1024x768i" 44 1024 1040 1216 1264 768 777 785 817 Interlace
|