-
Notifications
You must be signed in to change notification settings - Fork 2
/
pci_codes.h
9595 lines (9556 loc) · 571 KB
/
pci_codes.h
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
#if 0
PCIHDR.H: PCI Vendors, Devices, and Class Type information
Created automatically from the web using the following URL :
http ://pcidatabase.com/
Software to create and maintain the PCICODE List written by :
Jim Boemler([email protected])
This header created on Wed Feb 18 10 : 13 : 35 PST 2015
Too many people have contributed to this list to acknowledge them all, but
a few have provided the majority of the input and deserve special mention :
Frederic Potter, who maintains a list for Linux.
Chris Aston at Madge Networks.
Thomas Dippon of Hewlett - Packard GmbH.
Jurgen("Josh") Thelen
William H.Avery III at Altitech
Sergei Shtylyov of Brain - dead Software in Russia
#endif
// NOTE that the 0xFFFF of 0xFF entries at the end of some tables below are
// not properly list terminators, but are actually the printable definitions
// of values that are legitimately found on the PCI bus. The size
// definitions should be used for loop control when the table is searched.
typedef struct _PCI_VENTABLE
{
unsigned short VenId;
char * VenShort;
char * VenFull;
} PCI_VENTABLE, *PPCI_VENTABLE;
PCI_VENTABLE PciVenTable[] =
{
{ 0x0033, "<", "Paradyne Corp." },
{ 0x003D, "well", "master" },
{ 0x0070, "Hauppauge1", "Hauppauge Computer Works Inc." },
{ 0x0100, "ncipher", "USBPDO-8" },
{ 0x0123, "General Dynamics", "General Dynamics" },
{ 0x0315, "", "SK - Electronics Co., Ltd." },
{ 0x0402, "PCI\\VEN_10EC&DEV_AA01&SUBSYS_00AA0100&REV_1003", " Acer aspire one" },
{ 0x046D, " ", "Logitech Inc." },
{ 0x0483, "UPEK", "UPEK" },
{ 0x04A9, "Canon Scanner Elite", "Canon" },
{ 0x04B3, " Satrio", "IBM" },
{ 0x04D9, " ", "Filco" },
{ 0x04F2, "Chicony Electronics", "Chicony Electronics Co. " },
{ 0x051D, "INT33A0 ", "ACPI\\VEN_INT&DEV_33A0" },
{ 0x0529, " ", "Aladdin E-Token" },
{ 0x0553, "Aiptek", " Aiptek USA" },
{ 0x058f, "Alcor", "Alcor Micro Corp." },
{ 0x0590, " ", "Omron Corp" },
{ 0x05ac, " ", "Apple, Inc." },
{ 0x05E1, "D-MAX", "D-MAX" },
{ 0x064e, " Suyin", "SUYIN Corporation" },
{ 0x067B, "Prolific", "Prolific Technology Inc." },
{ 0x06FE, "Acresso Software", "Acresso Software Inc." },
{ 0x0711, "SIIG, Inc.", "SIIG, Inc." },
{ 0x093a, "Genius", "KYE Systems Corp. / Pixart Imaging" },
{ 0x096E, " ", "USB Rockey dongle from Feitain " },
{ 0x0A5C, " sd vid_02d0&pid_4330&fn_1", "Broadcom Corporation" },
{ 0x0A89, "BREA", "BREA Technologies Inc." },
{ 0x0A92, "Egosys", "Egosys, Inc." },
{ 0x0AC8, "ASUS ", "ASUS " },
{ 0x0b05, "Toshiba BT-183 bluetooth 2.0", "Toshiba Bluetooth RFBUS, RFCOM, RFHID" },
{ 0x0c45, "Microdia p", "Microdia Ltd." },
{ 0x0cf3, " ", "TP-Link" },
{ 0x0D2E, "Feedback Group ", "Feedback Instruments Ltd." },
{ 0x0D8C, "C-Media Electronics", "C-Media Electronics, Inc." },
{ 0x0DF6, "Sitecom", "Sitecom" },
{ 0x0E11, "Compaq", "Compaq Computer Corp." },
{ 0x0E8D, "MediaTek Inc.", "MediaTek Inc." },
{ 0x1000, "LSI", "LSI Logic" },
{ 0x1001, "KOLTER", "Kolter Electronic - Germany" },
{ 0x1002, "AMD", "Advanced Micro Devices, Inc." },
{ 0x1003, "ULSI", "ULSI" },
{ 0x1004, "VLSI", "VLSI Technology" },
{ 0x1006, "Reply", "Reply Group" },
{ 0x1007, "NetFrame", "Netframe Systems Inc." },
{ 0x1008, "Epson", "Epson" },
{ 0x100A, "Phoenix", "Âas Ltd. de Phoenix del ƒ de TecnologÃ" },
{ 0x100B, "NSC", "National Semiconductors" },
{ 0x100C, "Tseng", "Tseng Labs" },
{ 0x100D, "AST", "AST Research" },
{ 0x100E, "Weitek", "Weitek" },
{ 0x1010, "VLogic", "Video Logic Ltd." },
{ 0x1011, "DEC", "Digital Equipment Corporation" },
{ 0x1012, "Micronics", "Micronics Computers Inc." },
{ 0x1013, "Cirrus", "Cirrus Logic" },
{ 0x1014, "IBM", "International Business Machines Corp." },
{ 0x1016, "Fujitsu ICL", "Fujitsu ICL Computers" },
{ 0x1017, "Spea", "Spea Software AG" },
{ 0x1018, "Unisys", "Unisys Systems" },
{ 0x1019, "ECS", "Elitegroup Computer System" },
{ 0x101A, "NCR", "NCR Corporation" },
{ 0x101B, "Vitesse", "Vitesse Semiconductor" },
{ 0x101E, "AMI", "American Megatrends Inc." },
{ 0x101F, "PictureTel", "PictureTel Corp." },
{ 0x1020, "Hitachi", "Hitachi Computer Electronics" },
{ 0x1021, "OKI", "Oki Electric Industry" },
{ 0x1022, "AMD", "Advanced Micro Devices" },
{ 0x1023, "machdo", "TRIDENT MICRO" },
{ 0x1025, "Acer", "Acer Incorporated" },
{ 0x1028, "Dell755", "Dell Inc." },
{ 0x102A, "LSI", "LSI Logic Headland Division" },
{ 0x102B, "Matrox", "Matrox Electronic Systems Ltd." },
{ 0x102C, "C&T", "Asiliant (Chips And Technologies)" },
{ 0x102D, "Wyse", "Wyse Technology" },
{ 0x102E, "Olivetti", "Olivetti Advanced Technology" },
{ 0x102F, "U305-S7446", "Toshiba America" },
{ 0x1030, "TMC", "TMC Research" },
{ 0x1031, "miro dc30d", "miro Computer Products AG" },
{ 0x1033, "NEC", "NEC Electronics" },
{ 0x1034, "Burndy", "Burndy Corporation" },
{ 0x1036, "FDomain", "Future Domain" },
{ 0x1037, "Hitachi", "Hitachi Micro Systems Inc" },
{ 0x1038, "AMP", "AMP Incorporated" },
{ 0x1039, "SiS", "Silicon Integrated Systems" },
{ 0x103A, "Seiko", "Seiko Epson Corporation" },
{ 0x103B, "Tatung", "Tatung Corp. Of America" },
{ 0x103C, "tx1ooo", "Hewlett-Packard - HP dv9000" },
{ 0x103E, "Solliday", "Solliday Engineering" },
{ 0x103F, "Logic Mod.", "Logic Modeling" },
{ 0x1041, "Computrend", "Computrend" },
{ 0x1043, "Asustek", "Asustek Computer Inc." },
{ 0x1044, "DPT", "Distributed Processing Tech" },
{ 0x1045, "OPTi", "OPTi Inc." },
{ 0x1046, "IPC", "IPC Corporation LTD" },
{ 0x1047, "Genoa", "Genoa Systems Corp." },
{ 0x1048, "ELSA", "ELSA GmbH" },
{ 0x1049, "Fountain", "Fountain Technology" },
{ 0x104A, "STM", "STMicroelectronics" },
{ 0x104B, "", "Mylex / Buslogic" },
{ 0x104C, "TSIK", "Texas Instruments" },
{ 0x104D, "Sony", "Sony Corporation" },
{ 0x104E, "Oak", "Oak Technology" },
{ 0x104F, "Co-Time", "Co-Time Computer Ltd." },
{ 0x1050, "Winbond", "Winbond Electronics Corp." },
{ 0x1051, "Anigma", "Anigma Corp." },
{ 0x1053, "Young", "Young Micro Systems" },
{ 0x1054, "Hitachi", "Hitachi Ltd" },
{ 0x1055, "SMSC", "Standard Microsystems Corp." },
{ 0x1056, "ICL", "ICL" },
{ 0x1057, "Motorola", "Motorola" },
{ 0x1058, "ETRI", "Electronics & Telecommunication Res" },
{ 0x1059, "Kontron", "Kontron Canada" },
{ 0x105A, "Promise", "Promise Technology" },
{ 0x105B, "Mobham", "Mobham chip" },
{ 0x105C, "Wipro", "Wipro Infotech Limited" },
{ 0x105D, "Number-Nine", "Number Nine Visual Technology" },
{ 0x105E, "Vtech", "Vtech Engineering Canada Ltd." },
{ 0x105F, "Infotronic", "Infotronic America Inc." },
{ 0x1060, "UMC", "United Microelectronics" },
{ 0x1061, "8x8", "8x8 Inc." },
{ 0x1062, "Maspar", "Maspar Computer Corp." },
{ 0x1063, "OOA", "Ocean Office Automation" },
{ 0x1064, "Alcatel", "Alcatel Cit" },
{ 0x1065, "TM", "Texas Microsystems" },
{ 0x1066, "Picopower", "Picopower Technology" },
{ 0x1067, "Mitsubishi", "Mitsubishi Electronics" },
{ 0x1068, "Div. Tech.", "Diversified Technology" },
{ 0x106A, "Aten", "Aten Research Inc." },
{ 0x106B, "Apple", "Apple Inc." },
{ 0x106C, "Hyundai", "Hyundai Electronics America" },
{ 0x106D, "Sequent", "Sequent Computer Systems" },
{ 0x106E, "DFI", "DFI Inc." },
{ 0x106F, "CityGate", "City Gate Development LTD" },
{ 0x1070, "Daewoo", "Daewoo Telecom Ltd." },
{ 0x1071, "Mitac", "Mitac" },
{ 0x1072, "GIT", "GIT Co. Ltd." },
{ 0x1073, "Yamaha", "Yamaha Corporation" },
{ 0x1074, "Nexgen", "Nexgen Microsystems" },
{ 0x1075, "AIR", "Advanced Integration Research" },
{ 0x1077, "QLogic", "QLogic Corporation" },
{ 0x1078, "Cyrix", "Cyrix Corporation" },
{ 0x1079, "I-Bus", "I-Bus" },
{ 0x107A, "Networth", "Networth controls" },
{ 0x107B, "Gateway", "Gateway 2000" },
{ 0x107C, "Goldstar", "Goldstar Co. Ltd." },
{ 0x107D, "Leadtek", "Leadtek Research" },
{ 0x107E, "Interphase", "Testernec" },
{ 0x107F, "DTC", "Data Technology Corporation" },
{ 0x1080, "Cypress", "Cypress Semiconductor" },
{ 0x1081, "Radius Inc.", "Radius Inc." },
{ 0x1082, "EFA", "EFA Corporation Of America" },
{ 0x1083, "Forex", "Forex Computer Corporation" },
{ 0x1084, "Parador", "Parador" },
{ 0x1085, "Tulip", "Tulip Computers Int'l BV" },
{ 0x1086, "J. Bond", "J. Bond Computer Systems" },
{ 0x1087, "Cache", "Cache Computer" },
{ 0x1088, "MS Son.", "Microcomputer Systems (M) Son" },
{ 0x1089, "DG", "Data General Corporation" },
{ 0x108A, "Bit3", "SBS Operations" },
{ 0x108C, "Oakleigh", "Oakleigh Systems Inc." },
{ 0x108D, "Olicom", "Olicom" },
{ 0x108E, "Sun", "Sun Microsystems" },
{ 0x108F, "Systemsoft", "Systemsoft Corporation" },
{ 0x1090, "Encore", "Encore Computer Corporation" },
{ 0x1091, "Intergraph", "Intergraph Corporation" },
{ 0x1092, "Diamond", "Diamond Computer Systems" },
{ 0x1093, "NI", "National Instruments" },
{ 0x1094, "Apostolos", "Apostolos" },
{ 0x1095, "Silicon Image", "Silicon Image, Inc." },
{ 0x1096, "Alacron", "Alacron" },
{ 0x1097, "Appian", "Appian Graphics" },
{ 0x1098, "Quantum", "Quantum Designs Ltd." },
{ 0x1099, "Samsung", "Samsung Electronics Co. Ltd." },
{ 0x109A, "Packard-Bell", "Packard Bell" },
{ 0x109B, "Gemlight", "Gemlight Computer Ltd." },
{ 0x109C, "Megachips", "Megachips Corporation" },
{ 0x109D, "Zida", "Zida Technologies Ltd." },
{ 0x109E, "Brooktree", "Brooktree Corporation" },
{ 0x109F, "Trigem", "Trigem Computer Inc." },
{ 0x10A0, "Meidensha", "Meidensha Corporation" },
{ 0x10A1, "Juko", "Juko Electronics Inc. Ltd." },
{ 0x10A2, "Quantum", "Quantum Corporation" },
{ 0x10A3, "Everex", "Everex Systems Inc." },
{ 0x10A4, "Globe", "Globe Manufacturing Sales" },
{ 0x10A5, "Racal", "Racal Interlan" },
{ 0x10A8, "Sierra", "Sierra Semiconductor" },
{ 0x10A9, "SG", "Silicon Graphics" },
{ 0x10AB, "Digicom", "Digicom" },
{ 0x10AC, "Honeywell", "Honeywell IASD" },
{ 0x10AD, "Winbond", "Winbond Systems Labs" },
{ 0x10AE, "Cornerstone", "Cornerstone Technology" },
{ 0x10AF, "MCS", "Micro Computer Systems Inc." },
{ 0x10B0, "Gainward GmbH ", "Gainward GmbH " },
{ 0x10B1, "Cabletron", "Cabletron Systems Inc." },
{ 0x10B2, "Raytheon", "Raytheon Company" },
{ 0x10B3, "Databook", "Databook Inc." },
{ 0x10B4, "STB", "STB Systems" },
{ 0x10B5, "PLX", "PLX Technology Inc." },
{ 0x10B6, "Madge", "Madge Networks" },
{ 0x10B7, "3Com", "3Com Corporation" },
{ 0x10B8, "SMC", "Standard Microsystems Corporation" },
{ 0x10B9, "Ali", "Ali Corporation" },
{ 0x10BA, "Mitsubishi", "Mitsubishi Electronics Corp." },
{ 0x10BB, "Dapha", "Dapha Electronics Corporation" },
{ 0x10BC, "ALR", "Advanced Logic Research Inc." },
{ 0x10BD, "Surecom", "Surecom Technology" },
{ 0x10BE, "Tseng", "Tsenglabs International Corp." },
{ 0x10BF, "MOST", "MOST Corp." },
{ 0x10C0, "Boca", "Boca Research Inc." },
{ 0x10C1, "ICM", "ICM Corp. Ltd." },
{ 0x10C2, "Auspex", "Auspex Systems Inc." },
{ 0x10C3, "Samsung", "Samsung Semiconductors" },
{ 0x10C4, "wim", "Award Software Int'l Inc." },
{ 0x10C5, "Xerox Workcentre XD103", "Xerox Corporation" },
{ 0x10C6, "Rambus", "Rambus Inc." },
{ 0x10C8, "Neomagic", "Neomagic Corporation" },
{ 0x10C9, "Dataexpert", "Dataexpert Corporation" },
{ 0x10CA, "Fujitsu", "Fujitsu Siemens" },
{ 0x10CB, "Omron", "Omron Corporation" },
{ 0x10CD, "AdvanSys", "Advanced System Products" },
{ 0x10CF, "Fujitsu", "Fujitsu Ltd." },
{ 0x10D1, "Future+", "Future+ Systems" },
{ 0x10D2, "Molex", "Molex Incorporated" },
{ 0x10D3, "Jabil", "Jabil Circuit Inc." },
{ 0x10D4, "Hualon", "Hualon Microelectronics" },
{ 0x10D5, "Autologic", "Autologic Inc." },
{ 0x10D6, "Wilson .co .ltd", "Wilson .co .ltd" },
{ 0x10D7, "BCM", "BCM Advanced Research" },
{ 0x10D8, "APL", "Advanced Peripherals Labs" },
{ 0x10D9, "Macronix", "Macronix International Co. Ltd." },
{ 0x10DB, "Rohm", "Rohm Research" },
{ 0x10DC, "CERN", "CERN-European Lab. for Particle Physics" },
{ 0x10DD, "E&S", "Evans & Sutherland" },
{ 0x10DE, "NVIDIA", "NVIDIA" },
{ 0x10DF, "Emulex", "Emulex Corporation" },
{ 0x10E1, "Tekram", "Tekram Technology Corp. Ltd." },
{ 0x10E2, "Aptix", "Aptix Corporation" },
{ 0x10E3, "Tundra", "Tundra Semiconductor Corp." },
{ 0x10E4, "Tandem", "Tandem Computers" },
{ 0x10E5, "MIC", "Micro Industries Corporation" },
{ 0x10E6, "Gainbery", "Gainbery Computer Products Inc." },
{ 0x10E7, "Vadem", "Vadem" },
{ 0x10E8, "AMCC", "Applied Micro Circuits Corp." },
{ 0x10E9, "Alps", "Alps Electronic Corp. Ltd." },
{ 0x10EA, "Tvia", "Tvia, Inc." },
{ 0x10EB, "Artist", "Artist Graphics" },
{ 0x10EC, "Realtek", "Realtek Semiconductor Corp." },
{ 0x10ED, "Ascii", "Ascii Corporation" },
{ 0x10EE, "Xilinx", "Xilinx Corporation" },
{ 0x10EF, "Racore", "Racore Computer Products" },
{ 0x10F0, "Real-Time Graphics & Video", "Curtiss-Wright Controls Embedded Computing" },
{ 0x10F1, "Tyan", "Tyan Computer" },
{ 0x10F2, "Achme", "Achme Computer Inc. - GONE !!!!" },
{ 0x10F3, "Alaris", "Alaris Inc." },
{ 0x10F4, "S-Mos", "S-Mos Systems" },
{ 0x10F5, "NKK", "NKK Corporation" },
{ 0x10F6, "CES", "Creative Electronic Systems SA" },
{ 0x10F7, "Matsushita", "Matsushita Electric Industrial Corp." },
{ 0x10F8, "Altos", "Altos India Ltd." },
{ 0x10F9, "PC-Direct", "PC Direct" },
{ 0x10FA, "Truevision", "Truevision" },
{ 0x10FB, "Thesys", "Thesys Microelectronic's" },
{ 0x10FC, "I-O", "I-O Data Device Inc." },
{ 0x10FD, "Soyo", "Soyo Technology Corp. Ltd." },
{ 0x10FE, "Fast", "Fast Electronic GmbH" },
{ 0x10FF, "Ncube", "Ncube" },
{ 0x1100, "Jazz", "Jazz Multimedia" },
{ 0x1101, "Initio", "Initio Corporation" },
{ 0x1102, "Creative Labs", "Creative Technology LTD." },
{ 0x1103, "HighPoint", " HighPoint Technologies, Inc." },
{ 0x1104, "Rasterops", "Rasterops" },
{ 0x1105, "Sigma", "Sigma Designs Inc." },
{ 0x1106, "VIA", "VIA Technologies, Inc." },
{ 0x1107, "Stratus", "Stratus Computer" },
{ 0x1108, "Proteon", "Proteon Inc." },
{ 0x1109, "Cogent", "Adaptec/Cogent Data Technologies" },
{ 0x110A, "Siemens", "Siemens AG" },
{ 0x110B, "Chromatic", "Chromatic Research Inc" },
{ 0x110C, "Mini-Max", "Mini-Max Technology Inc." },
{ 0x110D, "ZNYX", "ZNYX Corporation" },
{ 0x110E, "CPU Tech.", "CPU Technology" },
{ 0x110F, "Ross", "Ross Technology" },
{ 0x1112, "Osicom", "Osicom Technologies Inc." },
{ 0x1113, "Accton", "Accton Technology Corporation" },
{ 0x1114, "Atmel", "Atmel Corp." },
{ 0x1116, "Data Translation", "Data Translation, Inc." },
{ 0x1117, "Datacube", "Datacube Inc." },
{ 0x1118, "Berg", "Berg Electronics" },
{ 0x1119, "Vortex", "ICP vortex Computersysteme GmbH" },
{ 0x111A, "Eff. Net.", "Efficent Networks" },
{ 0x111C, "Tricord", "Tricord Systems Inc." },
{ 0x111D, "IDT", "Integrated Device Technology Inc." },
{ 0x111F, "PDI", "Precision Digital Images" },
{ 0x1120, "EMC", "EMC Corp." },
{ 0x1121, "Zilog", "Zilog" },
{ 0x1123, "EDI", "Excellent Design Inc." },
{ 0x1124, "Leutron", "Leutron Vision AG" },
{ 0x1125, "Eurocore", "Eurocore/Vigra" },
{ 0x1127, "FORE RUNNER LE", "FORE Systems" },
{ 0x1129, "Firmworks", "Firmworks" },
{ 0x112A, "Hermes", "Hermes Electronics Co. Ltd." },
{ 0x112C, "Zenith", "Zenith Data Systems" },
{ 0x112D, "Ravicad", "Ravicad" },
{ 0x112E, "Infomedia", "Infomedia" },
{ 0x1130, "Computervision", "Computervision" },
{ 0x1131, "NXP", "NXP Semiconductors N.V." },
{ 0x1132, "Mitel", "Mitel Corp." },
{ 0x1133, "EIC", "Eicon Networks Corporation" },
{ 0x1134, "MCS", "Mercury Computer Systems Inc." },
{ 0x1135, "Fuji", "Fuji Xerox Co Ltd" },
{ 0x1136, "Momentum", "Momentum Data Systems" },
{ 0x1137, "Cisco", "Cisco Systems Inc" },
{ 0x1138, "Ziatech", "Ziatech Corporation" },
{ 0x1139, "Dyn. Pict.", "Dynamic Pictures Inc" },
{ 0x113A, "FWB", "FWB Inc" },
{ 0x113B, "NCD", "Network Computing Devices" },
{ 0x113C, "Cyclone", "Cyclone Microsystems Inc." },
{ 0x113D, "Leading Edge", "Leading Edge Products Inc" },
{ 0x113E, "Sanyo", "Sanyo Electric Co" },
{ 0x113F, "Equinox", "Equinox Systems" },
{ 0x1140, "Intervoice", "Intervoice Inc" },
{ 0x1141, "Crest", "Crest Microsystem Inc" },
{ 0x1142, "Alliance", "Alliance Semiconductor" },
{ 0x1143, "Netpower", "Netpower Inc" },
{ 0x1144, "Cinn. Mil.", "Cincinnati Milacron" },
{ 0x1145, "Workbit", "Workbit Corp" },
{ 0x1146, "Force", "Force Computers" },
{ 0x1147, "Interface", "Interface Corp" },
{ 0x1148, "Marvell", "Marvell Semiconductor Germany GmbH" },
{ 0x1149, "Win System", "Win System Corporation" },
{ 0x114A, "VMIC", "VMIC" },
{ 0x114B, "Canopus", "Canopus corporation" },
{ 0x114C, "Annabooks", "Annabooks" },
{ 0x114D, "IC Corp.", "IC Corporation" },
{ 0x114E, "Nikon", "Nikon Systems Inc" },
{ 0x114F, "Digi", "Digi International" },
{ 0x1150, "TMC", "Thinking Machines Corporation" },
{ 0x1151, "JAE", "JAE Electronics Inc." },
{ 0x1153, "Land Win", "Land Win Electronic Corp" },
{ 0x1154, "Melco", "Melco Inc" },
{ 0x1155, "Pine", "Pine Technology Ltd" },
{ 0x1156, "Periscope", "Periscope Engineering" },
{ 0x1157, "Avsys", "Avsys Corporation" },
{ 0x1158, "Voarx", "Voarx R&D Inc" },
{ 0x1159, "Mutech", "Mutech" },
{ 0x115A, "Harlequin", "Harlequin Ltd" },
{ 0x115B, "Parallax", "Parallax Graphics" },
{ 0x115C, "Photron", "Photron Ltd." },
{ 0x115D, "Xircom", "Xircom" },
{ 0x115E, "Peer", "Peer Protocols Inc" },
{ 0x115F, "Maxtorr", "Maxtor Corporation" },
{ 0x1160, "Megasoft", "Megasoft Inc" },
{ 0x1161, "PFU", "PFU Ltd" },
{ 0x1162, "OA Lab", "OA Laboratory Co Ltd" },
{ 0x1163, "mohamed", "mohamed alsherif" },
{ 0x1164, "APT", "Advanced Peripherals Tech" },
{ 0x1165, "Imagraph", "Imagraph Corporation" },
{ 0x1166, "BRCM/ServerWorks", "Broadcom / ServerWorks" },
{ 0x1167, "Mutoh", "Mutoh Industries Inc" },
{ 0x1168, "Thine", "Thine Electronics Inc" },
{ 0x1169, "CDAC", "Centre f/Dev. of Adv. Computing" },
{ 0x116A, "Luminex", "Luminex Software, Inc" },
{ 0x116B, "Connectware", "Connectware Inc" },
{ 0x116C, "Int Res.", "Intelligent Resources" },
{ 0x116E, "EFI", "Electronics for Imaging" },
{ 0x1170, "Inventec", "Inventec Corporation" },
{ 0x1172, "Altera", "Altera Corporation" },
{ 0x1173, "Adobe", "Adobe Systems" },
{ 0x1174, "Bridgeport", "Bridgeport Machines" },
{ 0x1175, "Mitron", "Mitron Computer Inc." },
{ 0x1176, "SBE", "SBE" },
{ 0x1177, "Silicon Eng.", "Silicon Engineering" },
{ 0x1178, "Alfa", "Alfa Inc" },
{ 0x1179, "Toshiba", "Toshiba corporation" },
{ 0x117A, "A-Trend", "A-Trend Technology" },
{ 0x117B, "LG", "LG (Lucky Goldstar) Electronics Inc." },
{ 0x117C, "Atto", "Atto Technology" },
{ 0x117D, "B&D", "Becton & Dickinson" },
{ 0x117E, "T/R", "T/R Systems" },
{ 0x117F, "ICS", "Integrated Circuit Systems" },
{ 0x1180, "Ricoh", "RicohCompany,Ltd." },
{ 0x1183, "Fujikura", "Fujikura Ltd" },
{ 0x1184, "Forks", "Forks Inc" },
{ 0x1185, "Dataworld", "Dataworld" },
{ 0x1186, "D-Link", "D-Link System Inc" },
{ 0x1187, "Philips Healthcare", "Philips Healthcare" },
{ 0x1188, "Shima", "Shima Seiki Manufacturing Ltd." },
{ 0x1189, "Matsushita", "Matsushita Electronics" },
{ 0x118A, "Hilevel", "Hilevel Technology" },
{ 0x118B, "Hypertec", "Hypertec Pty Ltd" },
{ 0x118C, "Corollary", "Corollary Inc" },
{ 0x118D, "BitFlow", "BitFlow Inc" },
{ 0x118E, "Hermstedt", "Hermstedt AG" },
{ 0x118F, "Green", "Green Logic" },
{ 0x1190, "Tripace", "Tripace" },
{ 0x1191, "Acard", "Acard Technology Corp." },
{ 0x1192, "Densan", "Densan Co. Ltd" },
{ 0x1194, "Toucan", "Toucan Technology" },
{ 0x1195, "Ratoc", "Ratoc System Inc" },
{ 0x1196, "Hytec", "Hytec Electronics Ltd" },
{ 0x1197, "Gage", "Gage Applied Technologies" },
{ 0x1198, "Lambda", "Lambda Systems Inc" },
{ 0x1199, "Attachmate", "Attachmate Corp." },
{ 0x119A, "Mind Share", "Mind/Share Inc." },
{ 0x119B, "Omega", "Omega Micro Inc." },
{ 0x119C, "ITI", "Information Technology Inst." },
{ 0x119D, "Bug", "Bug Sapporo Japan" },
{ 0x119E, "Fujitsu", "Fujitsu Microelectronics Ltd." },
{ 0x119F, "Bull", "Bull Hn Information Systems" },
{ 0x11A1, "Hamamatsu", "Hamamatsu Photonics K.K." },
{ 0x11A2, "Sierra", "Sierra Research and Technology" },
{ 0x11A3, "Deuretzbacher", "Deuretzbacher GmbH & Co. Eng. KG" },
{ 0x11A4, "Barco", "Barco" },
{ 0x11A5, "MicroUnity", "MicroUnity Systems Engineering Inc." },
{ 0x11A6, "Pure Data", "Pure Data" },
{ 0x11A7, "Power Comp.", "Power Computing Corp." },
{ 0x11A8, "Systech", "Systech Corp." },
{ 0x11A9, "InnoSys", "InnoSys Inc." },
{ 0x11AA, "Actel", "Actel" },
{ 0x11AB, "Marvell", "Marvell Semiconductor" },
{ 0x11AC, "Canon", "Canon Information Systems" },
{ 0x11AD, "Lite-On", "Lite-On Technology Corp." },
{ 0x11AE, "Scitex", "Scitex Corporation Ltd" },
{ 0x11AF, "Avid", "Avid Technology, Inc." },
{ 0x11B0, "QuickLogic", "Quicklogic Corp" },
{ 0x11B1, "Apricot", "Apricot Computers" },
{ 0x11B2, "Kodak", "Eastman Kodak" },
{ 0x11B3, "Barr", "Barr Systems Inc." },
{ 0x11B4, "Leitch", "Leitch Technology International" },
{ 0x11B5, "Radstone", "Radstone Technology Ltd." },
{ 0x11B6, "United Video", "United Video Corp" },
{ 0x11B7, "Motorola", "Motorola" },
{ 0x11B8, "Xpoint", "Xpoint Technologies Inc" },
{ 0x11B9, "Pathlight", "Pathlight Technology Inc." },
{ 0x11BA, "Videotron", "Videotron Corp" },
{ 0x11BB, "Pyramid", "Pyramid Technology" },
{ 0x11BC, "Net. Periph.", "Network Peripherals Inc" },
{ 0x11BD, "Pinnacle", "Pinnacle system" },
{ 0x11BE, "IMI", "International Microcircuits Inc" },
{ 0x11BF, "Astrodesign", "Astrodesign Inc." },
{ 0x11C1, "LSI", "LSI Corporation" },
{ 0x11C2, "Sand", "Sand Microelectronics" },
{ 0x11C4, "Doc. Tech.", "Document Technologies Ind." },
{ 0x11C5, "Shiva", "Shiva Corporatin" },
{ 0x11C6, "Dainippon", "Dainippon Screen Mfg. Co" },
{ 0x11C7, "D.C.M.", "D.C.M. Data Systems" },
{ 0x11C8, "Dolphin", "Dolphin Interconnect Solutions" },
{ 0x11C9, "MAGMA", "MAGMA" },
{ 0x11CA, "LSI Sys.", "LSI Systems Inc" },
{ 0x11CB, "Specialix", "Specialix International Ltd." },
{ 0x11CC, "M&K", "Michels & Kleberhoff Computer GmbH" },
{ 0x11CD, "HAL", "HAL Computer Systems Inc." },
{ 0x11CE, "PRI", "Primary Rate Inc" },
{ 0x11CF, "PEC", "Pioneer Electronic Corporation" },
{ 0x11D0, "BAE", "BAE SYSTEMS - Manassas" },
{ 0x11D1, "AuraVision", "AuraVision Corporation" },
{ 0x11D2, "Intercom", "Intercom Inc." },
{ 0x11D3, "Trancell", "Trancell Systems Inc" },
{ 0x11D4, "ADI", "Analog Devices, Inc." },
{ 0x11D5, "Tahoma", "Tahoma Technology" },
{ 0x11D6, "Tekelec", "Tekelec Technologies" },
{ 0x11D7, "Trenton", "TRENTON Technology, Inc." },
{ 0x11D8, "ITD", "Image Technologies Development" },
{ 0x11D9, "Tec", "Tec Corporation" },
{ 0x11DA, "Novell", "Novell" },
{ 0x11DB, "Sega", "Sega Enterprises Ltd" },
{ 0x11DC, "Questra", "Questra Corp" },
{ 0x11DD, "Crosfield", "Crosfield Electronics Ltd" },
{ 0x11DE, "Zoran", "Zoran Corporation" },
{ 0x11E1, "Gec Plessey", "Gec Plessey Semi Inc" },
{ 0x11E2, "Samsung", "Samsung Information Systems America" },
{ 0x11E3, "QuickLogic", "Quicklogic Corp" },
{ 0x11E4, "Second Wave", "Second Wave Inc" },
{ 0x11E5, "IIX", "IIX Consulting" },
{ 0x11E6, "Mitsui", "Mitsui-Zosen System Research" },
{ 0x11E8, "DPSI", "Digital Processing Systems Inc" },
{ 0x11E9, "Highwater", "Highwater Designs Ltd" },
{ 0x11EA, "Elsag", "Elsag Bailey" },
{ 0x11EB, "Formation", "Formation, Inc" },
{ 0x11EC, "Coreco", "Coreco Inc" },
{ 0x11ED, "Mediamatics", "Mediamatics" },
{ 0x11EE, "Dome", "Dome Imaging Systems Inc" },
{ 0x11EF, "Nicolet", "Nicolet Technologies BV" },
{ 0x11F0, "Triyabosa", "Triya" },
{ 0x11F2, "Pic-Tel", "Picture Tel Japan KK" },
{ 0x11F3, "Keithley", "Keithley Instruments, Inc" },
{ 0x11F4, "Kinetic", "Kinetic Systems Corporation" },
{ 0x11F5, "Comp Dev", "Computing Devices Intl" },
{ 0x11F6, "Powermatic", "Powermatic Data Systems Ltd" },
{ 0x11F7, "S-A", "Scientific Atlanta" },
{ 0x11F8, "PMC-Sierra", "PMC-Sierra Inc." },
{ 0x11F9, "I-Cube", "I-Cube Inc" },
{ 0x11FA, "Kasan", "Kasan Electronics Co Ltd" },
{ 0x11FB, "Datel", "Datel Inc" },
{ 0x11FD, "High Street", "High Street Consultants" },
{ 0x11FE, "Comtrol", "Comtrol Corp" },
{ 0x11FF, "Scion", "Scion Corp" },
{ 0x1200, "CSS", "CSS Corp" },
{ 0x1201, "Vista", "Vista Controls Corp" },
{ 0x1202, "Network Gen", "Network General Corp" },
{ 0x1203, "Agfa", "Bayer Corporation Agfa Div" },
{ 0x1204, "Lattice", "Lattice Semiconductor Corp" },
{ 0x1205, "Array", "Array Corp" },
{ 0x1206, "Amdahl", "Amdahl Corp" },
{ 0x1208, "Parsytec", "Parsytec GmbH" },
{ 0x1209, "Sci Sys", "Sci Systems Inc" },
{ 0x120A, "Synaptel", "Synaptel" },
{ 0x120B, "Adaptive", "Adaptive Solutions" },
{ 0x120D, "Comp Labs", "Compression Labs Inc." },
{ 0x120E, "Cyclades", "Cyclades Corporation" },
{ 0x120F, "Essential", "Essential Communications" },
{ 0x1210, "Hyperparallel", "Hyperparallel Technologies" },
{ 0x1211, "Braintech", "Braintech Inc" },
{ 0x1213, "AISI", "Applied Intelligent Systems Inc" },
{ 0x1214, "Perf Tech", "Performance Technologies Inc" },
{ 0x1215, "Interware", "Interware Co Ltd" },
{ 0x1216, "Purup Eskofot", "Purup-Eskofot A/S" },
{ 0x1217, "O2Micro", "O2Micro Inc" },
{ 0x1218, "Hybricon", "Hybricon Corp" },
{ 0x1219, "First Virtual", "First Virtual Corp" },
{ 0x121A, "3dfx", "3dfx Interactive Inc" },
{ 0x121B, "ATM", "Advanced Telecommunications Modules" },
{ 0x121C, "Nippon Texa", "Nippon Texa Co Ltd" },
{ 0x121D, "LiPPERT", "LiPPERT Embedded Computers GmbH" },
{ 0x121E, "CSPI", "CSPI" },
{ 0x121F, "Arcus", "Arcus Technology Inc" },
{ 0x1220, "Ariel", "Ariel Corporation" },
{ 0x1221, "Contec", "Contec Microelectronics Europe BV" },
{ 0x1222, "Ancor", "Ancor Communications Inc" },
{ 0x1223, "Artesyn Embedded", "Artesyn Embedded Technologies" },
{ 0x1224, "Int. Img.", "Interactive Images" },
{ 0x1225, "Power IO", "Power I/O Inc." },
{ 0x1227, "Tech-Source", "Tech-Source" },
{ 0x1228, "Norsk", "Norsk Elektro Optikk A/S" },
{ 0x1229, "Data Kin", "Data Kinesis Inc." },
{ 0x122A, "Int. Telecom", "Integrated Telecom" },
{ 0x122B, "LG Ind.", "LG Industrial Systems Co. Ltd." },
{ 0x122C, "sci-worx", "sci-worx GmbH" },
{ 0x122D, "Aztech", "Aztech System Ltd" },
{ 0x122E, "Absolute Analysis", "Absolute Analysis" },
{ 0x122F, "Andrew", "Andrew Corp." },
{ 0x1230, "Fishcamp", "Fishcamp Engineering" },
{ 0x1231, "WMI", "Woodward McCoach Inc." },
{ 0x1233, "Bus-Tech", "Bus-Tech Inc." },
{ 0x1234, "Technical", "Technical Corp" },
{ 0x1236, "Sigma Designs", "Sigma Designs, Inc" },
{ 0x1237, "Alta Tech", "Alta Technology Corp." },
{ 0x1238, "Adtran", "Adtran" },
{ 0x1239, "3DO", "The 3DO Company" },
{ 0x123A, "Visicom", "Visicom Laboratories Inc." },
{ 0x123B, "Seeq", "Seeq Technology Inc." },
{ 0x123C, "Century Sys", "Century Systems Inc." },
{ 0x123D, "EDT", "Engineering Design Team Inc." },
{ 0x123F, "C-Cube", "C-Cube Microsystems" },
{ 0x1240, "Marathon", "Marathon Technologies Corp." },
{ 0x1241, "DSC", "DSC Communications" },
{ 0x1242, "JNI", "JNI Corporation" },
{ 0x1243, "Delphax", "Delphax" },
{ 0x1244, "AVM", "AVM AUDIOVISUELLES MKTG & Computer GmbH" },
{ 0x1245, "APD", "APD S.A." },
{ 0x1246, "Dipix", "Dipix Technologies Inc" },
{ 0x1247, "Xylon", "Xylon Research Inc." },
{ 0x1248, "Central Data", "Central Data Corp." },
{ 0x1249, "Samsung", "Samsung Electronics Co. Ltd." },
{ 0x124A, "AEG", "AEG Electrocom GmbH" },
{ 0x124C, "Solitron", "Solitron Technologies Inc." },
{ 0x124D, "Stallion", "Stallion Technologies" },
{ 0x124E, "Cylink", "Cylink" },
{ 0x124F, "Infortrend", "Infortrend Technology Inc" },
{ 0x1250, "Hitachi", "Hitachi Microcomputer System Ltd." },
{ 0x1251, "VLSI Sol.", "VLSI Solution OY" },
{ 0x1253, "Guzik", "Guzik Technical Enterprises" },
{ 0x1254, "Linear Systems", "Linear Systems Ltd." },
{ 0x1255, "Optibase", "Optibase Ltd." },
{ 0x1256, "Perceptive", "Perceptive Solutions Inc." },
{ 0x1257, "Vertex", "Vertex Networks Inc." },
{ 0x1258, "Gilbarco", "Gilbarco Inc." },
{ 0x1259, "Allied Tsyn", "Allied Telesyn International" },
{ 0x125A, "ABB Pwr", "ABB Power Systems" },
{ 0x125B, "Asix", "Asix Electronics Corp." },
{ 0x125C, "Aurora", "Aurora Technologies Inc." },
{ 0x125D, "ESS", "ESS Technology" },
{ 0x125E, "Specvideo", "Specialvideo Engineering SRL" },
{ 0x125F, "CCT", "Concurrent Technologies Inc." },
{ 0x1260, "Intersil", "Intersil Corporation" },
{ 0x1261, "Matsushita", "Matsushita-Kotobuki Electronics Indu" },
{ 0x1262, "ES Comp.", "ES Computer Co. Ltd." },
{ 0x1263, "Sonic Sol.", "Sonic Solutions" },
{ 0x1264, "Aval Nag.", "Aval Nagasaki Corp." },
{ 0x1265, "Casio", "Casio Computer Co. Ltd." },
{ 0x1266, "Microdyne", "Microdyne Corp." },
{ 0x1267, "SA Telecom", "S.A. Telecommunications" },
{ 0x1268, "Tektronix", "Tektronix" },
{ 0x1269, "SGS Thomson", "Thomson-CSF/TTM" },
{ 0x126A, "Lexmark", "Lexmark International Inc." },
{ 0x126B, "Adax", "Adax Inc." },
{ 0x126C, "Nortel", "Nortel Networks Corp." },
{ 0x126D, "Splash", "Splash Technology Inc." },
{ 0x126E, "Sumitomo", "Sumitomo Metal Industries Ltd." },
{ 0x126F, "Sil Motion", "Silicon Motion" },
{ 0x1270, "Olympus", "Olympus Optical Co. Ltd." },
{ 0x1271, "GW Instr.", "GW Instruments" },
{ 0x1272, "taish", "themrtaish" },
{ 0x1273, "Hughes", "Hughes Network Systems" },
{ 0x1274, "Ensoniq", "Ensoniq" },
{ 0x1275, "NetApp", "Network Appliance" },
{ 0x1276, "Sw Net Tech", "Switched Network Technologies Inc." },
{ 0x1277, "Comstream", "Comstream" },
{ 0x1278, "Transtech", "Transtech Parallel Systems" },
{ 0x1279, "Transmeta", "Transmeta Corp." },
{ 0x127B, "Pixera", "Pixera Corp" },
{ 0x127C, "Crosspoint", "Crosspoint Solutions Inc." },
{ 0x127D, "Vela", "Vela Research LP" },
{ 0x127E, "Winnow", "Winnov L.P." },
{ 0x127F, "Fujifilm", "Fujifilm" },
{ 0x1280, "Photoscript", "Photoscript Group Ltd." },
{ 0x1281, "Yokogawa", "Yokogawa Electronic Corp." },
{ 0x1282, "Davicom", "Davicom Semiconductor Inc." },
{ 0x1283, " Zamora", "Waldo" },
{ 0x1285, "Plat Tech", "Platform Technologies Inc." },
{ 0x1286, "MAZeT", "MAZeT GmbH" },
{ 0x1287, "LuxSonor", "LuxSonor Inc." },
{ 0x1288, "Timestep", "Timestep Corp." },
{ 0x1289, "AVC Tech", "AVC Technology Inc." },
{ 0x128A, "Asante", "Asante Technologies Inc." },
{ 0x128B, "Transwitch", "Transwitch Corp." },
{ 0x128C, "Retix", "Retix Corp." },
{ 0x128D, "G2 Net", "G2 Networks Inc." },
{ 0x128F, "Tateno", "Tateno Dennou Inc." },
{ 0x1290, "Sord", "Sord Computer Corp." },
{ 0x1291, "NCS Comp", "NCS Computer Italia" },
{ 0x1292, "Tritech", "Tritech Microelectronics Intl PTE" },
{ 0x1293, "M Reality", "Media Reality Technology" },
{ 0x1294, "Rhetorex", "Rhetorex Inc." },
{ 0x1295, "Imagenation", "Imagenation Corp." },
{ 0x1296, "Kofax", "Kofax Image Products" },
{ 0x1297, "Shuttle Computer", "Shuttle Computer" },
{ 0x1298, "Spellcaster", "Spellcaster Telecommunications Inc." },
{ 0x1299, "Know Tech", "Knowledge Technology Laboratories" },
{ 0x129A, "CWCEL", "Curtiss Wright Controls Electronic Systems" },
{ 0x129B, "Img Access", "Image Access" },
{ 0x129D, "CompCore", "CompCore Multimedia Inc." },
{ 0x129E, "Victor Jpn", "Victor Co. of Japan Ltd." },
{ 0x129F, "OEC Med", "OEC Medical Systems Inc." },
{ 0x12A0, "A-B", "Allen Bradley Co." },
{ 0x12A1, "Simpact", "Simpact Inc" },
{ 0x12A2, "NewGen", "NewGen Systems Corp." },
{ 0x12A3, "Lucent", "Lucent Technologies AMR" },
{ 0x12A4, "NTT Elect", "NTT Electronics Corp." },
{ 0x12A5, "Vision Dyn", "Vision Dynamics Ltd." },
{ 0x12A6, "Scalable", "Scalable Networks Inc." },
{ 0x12A7, "AMO", "AMO GmbH" },
{ 0x12A8, "News Datacom", "News Datacom" },
{ 0x12A9, "Xiotech", "Xiotech Corp." },
{ 0x12AA, "SDL", "SDL Communications Inc." },
{ 0x12AB, "Yuan Yuan", "Yuan Yuan Enterprise Co. Ltd." },
{ 0x12AC, "MeasureX", "MeasureX Corp." },
{ 0x12AD, "MULTIDATA", "MULTIDATA GmbH" },
{ 0x12AE, "Alteon", "Alteon Networks Inc." },
{ 0x12AF, "TDK USA", "TDK USA Corp." },
{ 0x12B0, "Jorge Sci", "Jorge Scientific Corp." },
{ 0x12B1, "GammaLink", "GammaLink" },
{ 0x12B2, "Gen Signal", "General Signal Networks" },
{ 0x12B3, "Interface", "Interface Corp. Ltd." },
{ 0x12B4, "Future Tel", "Future Tel Inc." },
{ 0x12B5, "Granite", "Granite Systems Inc." },
{ 0x12B7, "Acumen", "Acumen" },
{ 0x12B8, "Korg", "Korg" },
{ 0x12B9, "3Com", "3Com Corporation" },
{ 0x12BA, "Bittware", "Bittware, Inc" },
{ 0x12BB, "Nippon Uni", "Nippon Unisoft Corp." },
{ 0x12BC, "Array Micro", "Array Microsystems" },
{ 0x12BD, "Computerm", "Computerm Corp." },
{ 0x12BF, "Fujifilm", "Fujifilm Microdevices" },
{ 0x12C0, "Infimed", "Infimed" },
{ 0x12C1, "GMM Res", "GMM Research Corp." },
{ 0x12C2, "Mentec", "Mentec Ltd." },
{ 0x12C3, "Holtek", "Holtek Microelectronics Inc." },
{ 0x12C4, "Connect Tech", "Connect Tech Inc." },
{ 0x12C5, "PicturEl", "Picture Elements Inc." },
{ 0x12C6, "Mitani", "Mitani Corp." },
{ 0x12C7, "Dialogic", "Dialogic Corp." },
{ 0x12C8, "G Force", "G Force Co. Ltd." },
{ 0x12C9, "Gigi Ops", "Gigi Operations" },
{ 0x12CA, "ICE", "Integrated Computing Engines, Inc." },
{ 0x12CB, "Antex", "Antex Electronics Corp." },
{ 0x12CC, "Pluto", "Pluto Technologies International" },
{ 0x12CD, "Aims Lab", "Aims Lab" },
{ 0x12CE, "Netspeed", "Netspeed Inc." },
{ 0x12CF, "Prophet", "Prophet Systems Inc." },
{ 0x12D0, "GDE Sys", "GDE Systems Inc." },
{ 0x12D1, "Huawei Inc.", "Huawei Technologies Co., Ltd." },
{ 0x12D3, "Vingmed", "Vingmed Sound A/S" },
{ 0x12D4, "Ulticom", "Ulticom, Inc." },
{ 0x12D5, "Equator", "Equator Technologies" },
{ 0x12D6, "Analogic", "Analogic Corp." },
{ 0x12D7, "Biotronic", "Biotronic SRL" },
{ 0x12D8, "Pericom", "Pericom Semiconductor" },
{ 0x12D9, "Aculab", "Aculab Plc." },
{ 0x12DA, "TrueTime", "TrueTime" },
{ 0x12DB, "Annapolis", "Annapolis Micro Systems Inc." },
{ 0x12DC, "Symicron", "Symicron Computer Communication Ltd." },
{ 0x12DD, "MGI", "Management Graphics Inc." },
{ 0x12DE, "Rainbow", "Rainbow Technologies" },
{ 0x12DF, "SBS Tech", "SBS Technologies Inc." },
{ 0x12E0, "Chase", "Chase Research PLC" },
{ 0x12E1, "Nintendo", "Nintendo Co. Ltd." },
{ 0x12E2, "Datum", "Datum Inc. Bancomm-Timing Division" },
{ 0x12E3, "Imation", "Imation Corp. - Medical Imaging Syst" },
{ 0x12E4, "Brooktrout", "Brooktrout Technology Inc." },
{ 0x12E6, "Cirel", "Cirel Systems" },
{ 0x12E7, "Sebring", "Sebring Systems Inc" },
{ 0x12E8, "CRISC", "CRISC Corp." },
{ 0x12E9, "GE Spacenet", "GE Spacenet" },
{ 0x12EB, "Aureal", "Aureal Semiconductor" },
{ 0x12EC, "3A Intl", "3A International Inc." },
{ 0x12ED, "Optivision", "Optivision Inc." },
{ 0x12EE, "Orange Micro", "Orange Micro, Inc." },
{ 0x12EF, "Vienna", "Vienna Systems" },
{ 0x12F0, "Pentek", "Pentek" },
{ 0x12F1, "Sorenson", "Sorenson Vision Inc." },
{ 0x12F2, "Gammagraphx", "Gammagraphx Inc." },
{ 0x12F4, "Megatel", "Megatel" },
{ 0x12F5, "Forks", "Forks" },
{ 0x12F7, "Cognex", "Cognex" },
{ 0x12F8, "Electronic-Design", "Electronic-Design GmbH" },
{ 0x12F9, "FFT", "FourFold Technologies" },
{ 0x12FB, "SSP", "Spectrum Signal Processing" },
{ 0x12FC, "CEC", "Capital Equipment Corp" },
{ 0x12FE, "esd", "esd Electronic System Design GmbH" },
{ 0x1303, "II", "Innovative Integration" },
{ 0x1304, "", "Juniper Networks Inc." },
{ 0x1307, "ComputerBoards", "ComputerBoards" },
{ 0x1308, "Jato", "Jato Technologies Inc." },
{ 0x130A, "Mitsubishi", "Mitsubishi Electric Microcomputer" },
{ 0x130B, "Colorgraphic", "Colorgraphic Communications Corp" },
{ 0x130F, "", "Advanet Inc." },
{ 0x1310, "", "Gespac" },
{ 0x1312, "Microscan", "Microscan Systems Inc" },
{ 0x1313, "", "Yaskawa Electric Co." },
{ 0x1316, "", "Teradyne Inc." },
{ 0x1317, "ADMtek", "ADMtek Inc" },
{ 0x1318, "Packet Engines", "Packet Engines, Inc." },
{ 0x1319, "Forte Media2", "Forte Media" },
{ 0x131F, "", "SIIG" },
{ 0x1325, "", "austriamicrosystems" },
{ 0x1326, "", "Seachange International" },
{ 0x1328, "CIFELLI", "CIFELLI SYSTEMS CORPORATION" },
{ 0x1331, "RadiSys", "RadiSys Corporation" },
{ 0x1332, "CWCEC", "Curtiss-Wright Controls Embedded Computing" },
{ 0x1335, "Videomail", "Videomail Inc." },
{ 0x133D, "", "Prisa Networks" },
{ 0x133F, "", "SCM Microsystems" },
{ 0x1342, "", "Promax Systems Inc" },
{ 0x1344, "Micron", "Micron Technology, Inc." },
{ 0x1347, "Spectracom", "Spectracom Corporation" },
{ 0x134A, "DTC", "DTC Technology Corp." },
{ 0x134B, "", "ARK Research Corp." },
{ 0x134C, "", "Chori Joho System Co. Ltd" },
{ 0x134D, "PCTEL", "PCTEL Inc." },
{ 0x135A, "constantin", "Brain Boxes Limited" },
{ 0x135B, "", "Giganet Inc." },
{ 0x135C, "", "Quatech Inc" },
{ 0x135D, "ABB Network Partn", "ABB Network Partner AB" },
{ 0x135E, "Sealevel", "Sealevel Systems Inc." },
{ 0x135F, "", "I-Data International A-S" },
{ 0x1360, "Meinberg Funkuhren", "Meinberg Funkuhren GmbH & Co. KG" },
{ 0x1361, "", "Soliton Systems K.K." },
{ 0x1363, "", "Phoenix Technologies Ltd" },
{ 0x1365, "Hypercope", "Hypercope Corp." },
{ 0x1366, "Teijin", "Teijin Seiki Co. Ltd." },
{ 0x1367, "", "Hitachi Zosen Corporation" },
{ 0x1368, "", "Skyware Corporation" },
{ 0x1369, "Digigram", "Digigram" },
{ 0x136B, "", "Kawasaki Steel Corporation" },
{ 0x136C, "", "Adtek System Science Co Ltd" },
{ 0x1375, "", "Boeing - Sunnyvale" },
{ 0x137A, "MOTU", "Mark Of The Unicorn Inc" },
{ 0x137B, "", "PPT Vision" },
{ 0x137C, "", "Iwatsu Electric Co Ltd" },
{ 0x137D, "", "Dynachip Corporation" },
{ 0x137E, "PTSC", "Patriot Scientific Corp." },
{ 0x1380, "SANRITZ", "Sanritz Automation Co LTC" },
{ 0x1381, "", "Brains Co. Ltd" },
{ 0x1382, "Marian", "Marian - Electronic & Software" },
{ 0x1384, "", "Stellar Semiconductor Inc" },
{ 0x1385, "Netgear", "Netgear" },
{ 0x1387, "CWCEL", "Curtiss-Wright Controls Electronic Systems" },
{ 0x1388, "", "Hitachi Information Technology Co Ltd" },
{ 0x1389, "Applicom", "Applicom International" },
{ 0x138A, " ", "Validity Sensors, Inc." },
{ 0x138B, "", "Tokimec Inc" },
{ 0x138E, "", "Basler GMBH" },
{ 0x138F, "", "Patapsco Designs Inc" },
{ 0x1390, "CDI", "Concept Development Inc." },
{ 0x1393, "", "Moxa Technologies Co Ltd" },
{ 0x1394, "Level One", "Level One Communications" },
{ 0x1395, "", "Ambicom Inc" },
{ 0x1396, "", "Cipher Systems Inc" },
{ 0x1397, "Cologne", "Cologne Chip Designs GmbH" },
{ 0x1398, "", "Clarion Co. Ltd" },
{ 0x139A, "", "Alacritech Inc" },
{ 0x139D, "", "Xstreams PLC/ EPL Limited" },
{ 0x139E, "", "Echostar Data Networks" },
{ 0x13A0, "", "Crystal Group Inc" },
{ 0x13A1, "", "Kawasaki Heavy Industries Ltd" },
{ 0x13A3, "HI-FN", "HI-FN Inc." },
{ 0x13A4, "", "Rascom Inc" },
{ 0x13A7, "", "amc330" },
{ 0x13A8, "XR", "Exar Corp." },
{ 0x13A9, "", "Siemens Healthcare" },
{ 0x13AA, "", "Nortel Networks - BWA Division" },
{ 0x13AF, "", "T.Sqware" },
{ 0x13B1, "", "Tamura Corporation" },
{ 0x13B4, "", "Wellbean Co Inc" },
{ 0x13B5, "", "ARM Ltd" },
{ 0x13B6, "pci\\ven_13b6", "DLoG Gesellschaft für elektronische Datentechnik mbH" },
{ 0x13B8, "", "Nokia Telecommunications OY" },
{ 0x13BD, "SHARP", "Sharp Corporation" },
{ 0x13BF, "", "Sharewave Inc" },
{ 0x13C0, "Microgate", "Microgate Corp." },
{ 0x13C1, "3ware", "LSI" },
{ 0x13C2, "", "Technotrend Systemtechnik GMBH" },
{ 0x13C3, "", "Janz Computer AG" },
{ 0x13C7, "", "Blue Chip Technology Ltd" },
{ 0x13CC, "", "Metheus Corporation" },
{ 0x13CF, "", "Studio Audio & Video Ltd" },
{ 0x13D0, "A", "B2C2 Inc" },
{ 0x13D1, "AboCom", "AboCom Systems, Inc" },
{ 0x13D4, "", "Graphics Microsystems Inc" },
{ 0x13D6, "", "K.I. Technology Co Ltd" },
{ 0x13D7, "tos6205", "Toshiba Engineering Corporation" },
{ 0x13D8, "", "Phobos Corporation" },
{ 0x13D9, "", "Apex Inc" },
{ 0x13DC, "", "Netboost Corporation" },
{ 0x13DE, "", "ABB Robotics Products AB" },
{ 0x13DF, "E-Tech", "E-Tech Inc." },
{ 0x13E0, "GVC", "GVC Corporation" },
{ 0x13E3, "", "Nest Inc" },
{ 0x13E4, "", "Calculex Inc" },
{ 0x13E5, "", "Telesoft Design Ltd" },
{ 0x13E9, "", "Intraserver Technology Inc" },
{ 0x13EA, "", "Dallas Semiconductor" },
{ 0x13F0, "harrys", "IC Plus Corporation" },
{ 0x13F1, "", "OCE - Industries S.A." },
{ 0x13F4, "", "Troika Networks Inc" },
{ 0x13F6, "C-Media", "C-Media Electronics Inc." },
{ 0x13F9, "", "NTT Advanced Technology Corp." },
{ 0x13FA, "Pentland", "Pentland Systems Ltd." },
{ 0x13FB, "", "Aydin Corp" },
{ 0x13FD, "", "Micro Science Inc" },
{ 0x13FE, "Advantech", "Advantech Co., Ltd." },
{ 0x13FF, "", "Silicon Spice Inc." },
{ 0x1400, "ArtX", "ArtX Inc" },
{ 0x1402, "Meilhaus Electronic", "Meilhaus Electronic GmbH Germany" },
{ 0x1404, "", "Fundamental Software Inc" },
{ 0x1406, "Oc", "Oce Print Logics Technologies S.A." },
{ 0x1407, "LAVA", "Lava Computer MFG Inc." },
{ 0x1408, "", "Aloka Co. Ltd" },
{ 0x1409, "SUNIX", "SUNIX Co., Ltd." },
{ 0x140A, "", "DSP Research Inc" },
{ 0x140B, "", "Ramix Inc" },
{ 0x140D, "", "Matsushita Electric Works Ltd" },
{ 0x140F, "", "Salient Systems Corp" },
{ 0x1412, "IC Ensemble", "IC Ensemble, Inc." },
{ 0x1413, "", "Addonics" },
{ 0x1415, "Oxford", "Oxford Semiconductor Ltd - now part of PLX Technology " },
{ 0x1418, "KES Inc.", "Kyushu Electronics Systems Inc" },
{ 0x1419, "", "Excel Switching Corp" },
{ 0x141B, "Gerd Mokwinski", "Zoom Telephonics Inc" },
{ 0x141E, "", "Fanuc Co. Ltd" },
{ 0x141F, "", "Visiontech Ltd" },
{ 0x1420, "", "Psion Dacom PLC" },
{ 0x1425, "", "Chelsio Communications" },
{ 0x1428, "", "Edec Co Ltd" },
{ 0x1429, "", "Unex Technology Corp." },
{ 0x142A, "", "Kingmax Technology Inc" },
{ 0x142B, "", "Radiolan" },
{ 0x142C, "", "Minton Optic Industry Co Ltd" },
{ 0x142D, "", "Pixstream Inc" },
{ 0x1430, "", "ITT Aerospace/Communications Division" },
{ 0x1433, "", "Eltec Elektronik AG" },
{ 0x1435, "RTD", "RTD Embedded Technologies, Inc." },
{ 0x1436, "", "CIS Technology Inc" },
{ 0x1437, "", "Nissin Inc Co" },
{ 0x1438, "", "Atmel-Dream" },
{ 0x143F, "", "Lightwell Co Ltd - Zax Division" },
{ 0x1441, "", "Agie SA." },
{ 0x1443, "Unibrain", "Unibrain S.A." },
{ 0x1445, "", "Logical Co Ltd" },
{ 0x1446, "", "Graphin Co., LTD" },
{ 0x1447, "", "Aim GMBH" },
{ 0x1448, "Alesis", "Alesis Studio" },
{ 0x144A, "ADLINK", "ADLINK Technology Inc" },
{ 0x144B, "Loronix", "Loronix Information Systems, Inc." },
{ 0x144D, "", "sanyo" },
{ 0x1450, "", "Octave Communications Ind." },
{ 0x1451, "", "SP3D Chip Design GMBH" },
{ 0x1453, "", "Mycom Inc" },
{ 0x1458, "Giga-Byte", "Giga-Byte Technologies" },
{ 0x145C, "", "Cryptek" },
{ 0x145F, "Baldor", "Baldor Electric Company" },
{ 0x1460, "", "Dynarc Inc" },
{ 0x1462, "MSI", "Micro-Star International Co Ltd" },
{ 0x1463, "", "Fast Corporation" },
{ 0x1464, "ICS", "Interactive Circuits & Systems Ltd" },
{ 0x1468, "", "Ambit Microsystems Corp." },
{ 0x1469, "", "Cleveland Motion Controls" },
{ 0x146C, "", "Ruby Tech Corp." },
{ 0x146D, "SDF", "Tachyon Inc." },
{ 0x146E, "", "WMS Gaming" },
{ 0x1471, "ITex", "Integrated Telecom Express Inc" },
{ 0x1473, "", "Zapex Technologies Inc" },
{ 0x1474, "", "Doug Carson & Associates" },
{ 0x1477, "", "Net Insight" },
{ 0x1478, "", "Diatrend Corporation" },
{ 0x147B, "", "Abit Computer Corp." },
{ 0x147F, "", "Nihon Unisys Ltd." },
{ 0x1482, "", "Isytec - Integrierte Systemtechnik Gmbh" },
{ 0x1483, "", "Labway Coporation" },
{ 0x1485, "Edward", "Erma - Electronic GMBH" },
{ 0x1489, "", "KYE Systems Corporation" },
{ 0x148A, "", "Opto 22" },
{ 0x148B, "", "Innomedialogic Inc." },
{ 0x148C, "CP (PowerColor)", "C.P. Technology Co. Ltd" },
{ 0x148D, "Digicom", "Digicom Systems Inc." },
{ 0x148E, "", "OSI Plus Corporation" },
{ 0x148F, "Giggs", "Plant Equipment Inc." },
{ 0x1490, "", "TC Labs Pty Ltd." },
{ 0x1491, "Futronic ", "Futronic " },
{ 0x1493, "", "Maker Communications" },
{ 0x1495, "", "Tokai Communications Industry Co. Ltd" },
{ 0x1496, "", "Joytech Computer Co. Ltd." },
{ 0x1497, "SMA", "SMA Technologie AG" },
{ 0x1498, "Tews", "Tews Technologies" },
{ 0x1499, "", "Micro-Technology Co Ltd" },
{ 0x149A, "Andor Tech", "Andor Technology Ltd" },
{ 0x149B, "", "Seiko Instruments Inc" },
{ 0x149E, "", "Mapletree Networks Inc." },
{ 0x149F, "", "Lectron Co Ltd" },
{ 0x14A0, "Vetronix Corporation Engenharia Ltda", "Softing AG" },
{ 0x14A2, "", "Millennium Engineering Inc" },
{ 0x14A4, "sebastien", "GVC/BCM Advanced Research" },
{ 0x14A9, "Hivertec Inc.", "Hivertec Inc." },
{ 0x14AB, "", "Mentor Graphics Corp." },
{ 0x14B1, "", "Nextcom K.K." },
{ 0x14B3, "Xpeed", "Xpeed Inc." },
{ 0x14B4, "", "Philips Business Electronics B.V." },
{ 0x14B5, "Creamware", "Creamware GmbH" },
{ 0x14B6, "", "Quantum Data Corp." },
{ 0x14B7, "Proxim", "Proxim Inc." },
{ 0x14B9, "Aironet", "Aironet Wireless Communication" },
{ 0x14BA, "", "Internix Inc." },
{ 0x14BB, "", "Semtech Corporation" },
{ 0x14BE, "", "L3 Communications" },
{ 0x14C0, "Compal", "Compal Electronics, Inc." },
{ 0x14C1, "", "Myricom Inc." },
{ 0x14C2, "", "DTK Computer" },
{ 0x14C4, "", "Iwasaki Information Systems Co Ltd" },
{ 0x14C5, "ABB", "ABB AB (Sweden)" },
{ 0x14C6, "", "Data Race Inc" },
{ 0x14C7, "Modtech", "Modular Technology Ltd." },
{ 0x14C8, "Turbocomm", "Turbocomm Tech Inc" },
{ 0x14C9, "", "Odin Telesystems Inc" },
{ 0x14CB, "", "Billionton Systems Inc./Cadmus Micro Inc" },