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
|
/* MemTest86+ V5 Specific code (GPL V2.0)
* By Samuel DEMEULEMEESTER, memtest@memtest.org
* https://x86.fr - https://www.memtest.org
* ------------------------------------------------
* Based on JEDEC JEP106-BA - January 2022
*/
#define JEDEC_CONT_CODE_MAX 14
#define JEP106_CNT \
sizeof(jep106)/sizeof(jep106[0])
struct spd_jedec_manufacturer {
uint16_t jedec_code;
char *name;
};
static const struct spd_jedec_manufacturer jep106[] = {
{ 0x0001, "AMD" },
// { 0x0002, "AMI" },
// { 0x0003, "Fairchild" },
{ 0x0004, "Fujitsu" },
{ 0x0005, "GTE" },
// { 0x0006, "Harris" },
// { 0x0007, "Hitachi" },
// { 0x0008, "Inmos" },
{ 0x0009, "Intel" },
// { 0x000A, "I.T.T." },
// { 0x000B, "Intersil" },
// { 0x000C, "Monolithic Memories" },
// { 0x000D, "Mostek" },
{ 0x000E, "Freescale" },
// { 0x000F, "National" },
// { 0x0010, "NEC" },
// { 0x0011, "RCA" },
// { 0x0012, "Raytheon" },
// { 0x0013, "Conexant (Rockwell)" },
// { 0x0014, "Seeq" },
// { 0x0015, "NXP (Philips)" },
// { 0x0016, "Synertek" },
{ 0x0017, "Texas Instruments" },
{ 0x0018, "Kioxia (Toshiba)" },
// { 0x0019, "Xicor" },
// { 0x001A, "Zilog" },
// { 0x001B, "Eurotechnique" },
// { 0x001C, "Mitsubishi" },
// { 0x001D, "Lucent (AT&T)" },
// { 0x001E, "Exel" },
// { 0x001F, "Atmel" },
{ 0x0020, "STMicro." },
// { 0x0021, "Lattice Semi." },
// { 0x0022, "NCR" },
// { 0x0023, "Wafer Scale Integration" },
// { 0x0024, "IBM" },
// { 0x0025, "Tristar" },
// { 0x0026, "Visic" },
// { 0x0027, "Intl. CMOS Technology" },
// { 0x0028, "SSSI" },
{ 0x0029, "Microchip" },
// { 0x002A, "Ricoh Ltd" },
// { 0x002B, "VLSI" },
{ 0x002C, "Micron" },
{ 0x002D, "SK Hynix" },
// { 0x002E, "OKI Semiconductor" },
// { 0x002F, "ACTEL" },
// { 0x0030, "Sharp" },
// { 0x0031, "Catalyst" },
// { 0x0032, "Panasonic" },
// { 0x0033, "IDT" },
// { 0x0034, "Cypress" },
// { 0x0035, "DEC" },
// { 0x0036, "LSI Logic" },
// { 0x0037, "Zarlink (Plessey)" },
// { 0x0038, "UTMC" },
// { 0x0039, "Thinking Machine" },
// { 0x003A, "Thomson CSF" },
// { 0x003B, "Integrated CMOS (Vertex)" },
// { 0x003C, "Honeywell" },
// { 0x003D, "Tektronix" },
// { 0x003E, "Oracle Corporation" },
// { 0x003F, "Silicon Storage Technology" },
{ 0x0040, "MOSEL" },
{ 0x0041, "Infineon" },
{ 0x0042, "Macronix" },
// { 0x0043, "Xerox" },
// { 0x0044, "Plus Logic" },
// { 0x0045, "Western Digital Technologies Inc" },
// { 0x0046, "Elan Circuit Tech." },
// { 0x0047, "European Silicon Str." },
{ 0x0048, "Apple Computer" },
// { 0x0049, "Xilinx" },
// { 0x004A, "Compaq" },
// { 0x004B, "Protocol Engines" },
// { 0x004C, "SCI" },
// { 0x004D, "Seiko Instruments" },
{ 0x004E, "Samsung" },
// { 0x004F, "I3 Design System" },
// { 0x0050, "Klic" },
// { 0x0051, "Crosspoint Solutions" },
// { 0x0052, "Alliance Memory Inc" },
// { 0x0053, "Tandem" },
// { 0x0054, "Hewlett-Packard" },
// { 0x0055, "Integrated Silicon Solutions" },
// { 0x0056, "Brooktree" },
// { 0x0057, "New Media" },
// { 0x0058, "MHS Electronic" },
// { 0x0059, "Performance Semi." },
{ 0x005A, "Winbond" },
// { 0x005B, "Kawasaki Steel" },
// { 0x005C, "Bright Micro" },
// { 0x005D, "TECMAR" },
// { 0x005E, "Exar" },
// { 0x005F, "PCMCIA" },
// { 0x0060, "LG Semi (Goldstar)" },
// { 0x0061, "Northern Telecom" },
{ 0x0062, "Sanyo" },
// { 0x0063, "Array Microsystems" },
// { 0x0064, "Crystal Semiconductor" },
// { 0x0065, "Analog Devices" },
// { 0x0066, "PMC-Sierra" },
// { 0x0067, "Asparix" },
// { 0x0068, "Convex Computer" },
// { 0x0069, "Quality Semiconductor" },
// { 0x006A, "Nimbus Technology" },
// { 0x006B, "Transwitch" },
// { 0x006C, "Micronas (ITT Intermetall)" },
// { 0x006D, "Cannon" },
// { 0x006E, "Altera" },
// { 0x006F, "NEXCOM" },
// { 0x0070, "Qualcomm" },
// { 0x0071, "Sony" },
// { 0x0072, "Cray Research" },
// { 0x0073, "AMS(Austria Micro)" },
// { 0x0074, "Vitesse" },
// { 0x0075, "Aster Electronics" },
// { 0x0076, "Bay Networks (Synoptic)" },
// { 0x0077, "Zentrum/ZMD" },
// { 0x0078, "TRW" },
// { 0x0079, "Thesys" },
// { 0x007A, "Solbourne Computer" },
// { 0x007B, "Allied-Signal" },
// { 0x007C, "Dialog Semiconductor" },
// { 0x007D, "Media Vision" },
// { 0x007E, "Numonyx Corporation" },
// { 0x0101, "Cirrus Logic" },
// { 0x0102, "National Instruments" },
// { 0x0103, "ILC Data Device" },
// { 0x0104, "Alcatel Mietec" },
// { 0x0105, "Micro Linear" },
// { 0x0106, "Univ. of NC" },
// { 0x0107, "JTAG Technologies" },
// { 0x0108, "BAE Systems (Loral)" },
// { 0x0109, "Nchip" },
// { 0x010A, "Galileo Tech" },
// { 0x010B, "Bestlink Systems" },
// { 0x010C, "Graychip" },
// { 0x010D, "GENNUM" },
// { 0x010E, "VideoLogic" },
// { 0x010F, "Robert Bosch" },
// { 0x0110, "Chip Express" },
// { 0x0111, "DATARAM" },
// { 0x0112, "United Microelectronics Corp" },
// { 0x0113, "TCSI" },
{ 0x0114, "Smart Modular" },
// { 0x0115, "Hughes Aircraft" },
// { 0x0116, "Lanstar Semiconductor" },
// { 0x0117, "Qlogic" },
{ 0x0118, "Kingston" },
// { 0x0119, "Music Semi" },
// { 0x011A, "Ericsson Components" },
// { 0x011B, "SpaSE" },
// { 0x011C, "Eon Silicon Devices" },
// { 0x011D, "Integrated Silicon Solution (ISSI)" },
// { 0x011E, "DoD" },
// { 0x011F, "Integ. Memories Tech." },
// { 0x0120, "Corollary Inc" },
// { 0x0121, "Dallas Semiconductor" },
// { 0x0122, "Omnivision" },
// { 0x0123, "EIV(Switzerland)" },
// { 0x0124, "Novatel Wireless" },
// { 0x0125, "Zarlink (Mitel)" },
// { 0x0126, "Clearpoint" },
// { 0x0127, "Cabletron" },
// { 0x0128, "STEC (Silicon Tech)" },
// { 0x0129, "Vanguard" },
// { 0x012A, "Hagiwara Sys-Com" },
// { 0x012B, "Vantis" },
// { 0x012C, "Celestica" },
// { 0x012D, "Century" },
// { 0x012E, "Hal Computers" },
// { 0x012F, "Rohm Company Ltd" },
// { 0x0130, "Juniper Networks" },
// { 0x0131, "Libit Signal Processing" },
// { 0x0132, "Mushkin Enhanced Memory" },
// { 0x0133, "Tundra Semiconductor" },
// { 0x0134, "Adaptec Inc" },
// { 0x0135, "LightSpeed Semi." },
// { 0x0136, "ZSP Corp" },
// { 0x0137, "AMIC Technology" },
// { 0x0138, "Adobe Systems" },
// { 0x0139, "Dynachip" },
{ 0x013A, "PNY" },
// { 0x013B, "Newport Digital" },
// { 0x013C, "MMC Networks" },
// { 0x013D, "T Square" },
// { 0x013E, "Seiko Epson" },
// { 0x013F, "Broadcom" },
// { 0x0140, "Viking Components" },
// { 0x0141, "V3 Semiconductor" },
{ 0x0142, "Flextronics" },
// { 0x0143, "Suwa Electronics" },
// { 0x0144, "Transmeta" },
{ 0x0145, "Micron CMS" },
// { 0x0147, "Enhance 3000 Inc" },
// { 0x0148, "Tower Semiconductor" },
// { 0x0149, "CPU Design" },
// { 0x014A, "Price Point" },
// { 0x014B, "Maxim Integrated Product" },
// { 0x014C, "Tellabs" },
// { 0x014D, "Centaur Technology" },
// { 0x014E, "Unigen Corporation" },
{ 0x014F, "Transcend" },
// { 0x0150, "Memory Card Technology" },
// { 0x0151, "CKD Corporation Ltd" },
// { 0x0152, "Capital Instruments Inc" },
// { 0x0153, "Aica Kogyo Ltd" },
// { 0x0154, "Linvex Technology" },
// { 0x0155, "MSC Vertriebs GmbH" },
// { 0x0156, "AKM Company Ltd" },
// { 0x0157, "Dynamem Inc" },
// { 0x0158, "NERA ASA" },
// { 0x0159, "GSI Technology" },
{ 0x015A, "Dane-Elec" },
// { 0x015B, "Acorn Computers" },
// { 0x015C, "Lara Technology" },
// { 0x015D, "Oak Technology Inc" },
// { 0x015E, "Itec Memory" },
// { 0x015F, "Tanisys Technology" },
// { 0x0160, "Truevision" },
{ 0x0161, "Wintec" },
// { 0x0162, "Super PC Memory" },
// { 0x0163, "MGV Memory" },
// { 0x0164, "Galvantech" },
// { 0x0165, "Gadzoox Networks" },
// { 0x0166, "Multi Dimensional Cons." },
// { 0x0167, "GateField" },
// { 0x0168, "Integrated Memory System" },
// { 0x0169, "Triscend" },
// { 0x016A, "XaQti" },
// { 0x016B, "Goldenram" },
// { 0x016C, "Clear Logic" },
// { 0x016D, "Cimaron Communications" },
// { 0x016E, "Nippon Steel Semi. Corp" },
// { 0x016F, "Advantage Memory" },
// { 0x0170, "AMCC" },
// { 0x0171, "LeCroy" },
// { 0x0172, "Yamaha Corporation" },
// { 0x0173, "Digital Microwave" },
// { 0x0174, "NetLogic Microsystems" },
// { 0x0175, "MIMOS Semiconductor" },
// { 0x0176, "Advanced Fibre" },
// { 0x0177, "BF Goodrich Data." },
// { 0x0178, "Epigram" },
{ 0x0179, "Acbel" },
{ 0x017A, "Apacer" },
// { 0x017B, "Admor Memory" },
{ 0x017C, "FOXCONN" },
// { 0x017D, "Quadratics Superconductor" },
// { 0x017E, "3COM" },
// { 0x0201, "Camintonn Corporation" },
// { 0x0202, "ISOA Incorporated" },
// { 0x0203, "Agate Semiconductor" },
// { 0x0204, "ADMtek Incorporated" },
// { 0x0205, "HYPERTEC" },
// { 0x0206, "Adhoc Technologies" },
// { 0x0207, "MOSAID Technologies" },
// { 0x0208, "Ardent Technologies" },
// { 0x0209, "Switchcore" },
// { 0x020A, "Cisco Systems Inc" },
// { 0x020B, "Allayer Technologies" },
// { 0x020C, "WorkX AG (Wichman)" },
// { 0x020D, "Oasis Semiconductor" },
// { 0x020E, "Novanet Semiconductor" },
// { 0x020F, "E-M Solutions" },
// { 0x0210, "Power General" },
// { 0x0211, "Advanced Hardware Arch." },
// { 0x0212, "Inova Semiconductors GmbH" },
// { 0x0213, "Telocity" },
// { 0x0214, "Delkin Devices" },
// { 0x0215, "Symagery Microsystems" },
// { 0x0216, "C-Port Corporation" },
// { 0x0217, "SiberCore Technologies" },
// { 0x0218, "Southland Microsystems" },
// { 0x0219, "Malleable Technologies" },
// { 0x021A, "Kendin Communications" },
// { 0x021B, "Great Technology Microcomputer" },
// { 0x021C, "Sanmina Corporation" },
// { 0x021D, "HADCO Corporation" },
{ 0x021E, "Corsair" },
// { 0x021F, "Actrans System Inc" },
// { 0x0220, "ALPHA Technologies" },
// { 0x0221, "Silicon Laboratories Inc (Cygnal)" },
// { 0x0222, "Artesyn Technologies" },
// { 0x0223, "Align Manufacturing" },
// { 0x0224, "Peregrine Semiconductor" },
// { 0x0225, "Chameleon Systems" },
// { 0x0226, "Aplus Flash Technology" },
// { 0x0227, "MIPS Technologies" },
// { 0x0228, "Chrysalis ITS" },
// { 0x0229, "ADTEC Corporation" },
{ 0x022A, "Kentron" },
// { 0x022B, "Win Technologies" },
// { 0x022C, "Tezzaron Semiconductor" },
// { 0x022D, "Extreme Packet Devices" },
// { 0x022E, "RF Micro Devices" },
{ 0x022F, "Siemens AG" },
// { 0x0230, "Sarnoff Corporation" },
// { 0x0231, "Itautec SA" },
// { 0x0232, "Radiata Inc" },
// { 0x0233, "Benchmark Elect. (AVEX)" },
// { 0x0234, "Legend" },
{ 0x0235, "SpecTek" },
// { 0x0236, "Hi/fn" },
// { 0x0237, "Enikia Incorporated" },
// { 0x0238, "SwitchOn Networks" },
// { 0x0239, "AANetcom Incorporated" },
// { 0x023A, "Micro Memory Bank" },
// { 0x023B, "ESS Technology" },
// { 0x023C, "Virata Corporation" },
// { 0x023D, "Excess Bandwidth" },
// { 0x023E, "West Bay Semiconductor" },
// { 0x023F, "DSP Group" },
// { 0x0240, "Newport Communications" },
// { 0x0241, "Chip2Chip Incorporated" },
// { 0x0242, "Phobos Corporation" },
// { 0x0243, "Intellitech Corporation" },
// { 0x0244, "Nordic VLSI ASA" },
// { 0x0245, "Ishoni Networks" },
// { 0x0246, "Silicon Spice" },
// { 0x0247, "Alchemy Semiconductor" },
// { 0x0248, "Agilent Technologies" },
// { 0x0249, "Centillium Communications" },
// { 0x024A, "W.L. Gore" },
// { 0x024B, "HanBit Electronics" },
// { 0x024C, "GlobeSpan" },
// { 0x024D, "Element 14" },
// { 0x024E, "Pycon" },
// { 0x024F, "Saifun Semiconductors" },
// { 0x0250, "Sibyte Incorporated" },
// { 0x0251, "MetaLink Technologies" },
// { 0x0252, "Feiya Technology" },
// { 0x0253, "I & C Technology" },
// { 0x0254, "Shikatronics" },
// { 0x0255, "Elektrobit" },
// { 0x0256, "Megic" },
// { 0x0257, "Com-Tier" },
// { 0x0258, "Malaysia Micro Solutions" },
// { 0x0259, "Hyperchip" },
// { 0x025A, "Gemstone Communications" },
// { 0x025B, "Anadigm (Anadyne)" },
// { 0x025C, "3ParData" },
// { 0x025D, "Mellanox Technologies" },
// { 0x025E, "Tenx Technologies" },
// { 0x025F, "Helix AG" },
// { 0x0260, "Domosys" },
// { 0x0261, "Skyup Technology" },
// { 0x0262, "HiNT Corporation" },
// { 0x0263, "Chiaro" },
// { 0x0264, "MDT Technologies GmbH" },
// { 0x0265, "Exbit Technology A/S" },
// { 0x0266, "Integrated Technology Express" },
// { 0x0267, "AVED Memory" },
// { 0x0268, "Legerity" },
// { 0x0269, "Jasmine Networks" },
// { 0x026A, "Caspian Networks" },
// { 0x026B, "nCUBE" },
// { 0x026C, "Silicon Access Networks" },
// { 0x026D, "FDK Corporation" },
// { 0x026E, "High Bandwidth Access" },
// { 0x026F, "MultiLink Technology" },
// { 0x0270, "BRECIS" },
// { 0x0271, "World Wide Packets" },
// { 0x0272, "APW" },
// { 0x0273, "Chicory Systems" },
// { 0x0274, "Xstream Logic" },
// { 0x0275, "Fast-Chip" },
// { 0x0276, "Zucotto Wireless" },
// { 0x0277, "Realchip" },
// { 0x0278, "Galaxy Power" },
// { 0x0279, "eSilicon" },
// { 0x027A, "Morphics Technology" },
// { 0x027B, "Accelerant Networks" },
// { 0x027C, "Silicon Wave" },
// { 0x027D, "SandCraft" },
{ 0x027E, "Elpida" },
// { 0x0301, "Solectron" },
// { 0x0302, "Optosys Technologies" },
// { 0x0303, "Buffalo (Formerly Melco)" },
// { 0x0304, "TriMedia Technologies" },
// { 0x0305, "Cyan Technologies" },
// { 0x0306, "Global Locate" },
// { 0x0307, "Optillion" },
// { 0x0308, "Terago Communications" },
// { 0x0309, "Ikanos Communications" },
// { 0x030A, "Princeton Technology" },
{ 0x030B, "Nanya" },
// { 0x030C, "Elite Flash Storage" },
// { 0x030D, "Mysticom" },
// { 0x030E, "LightSand Communications" },
{ 0x030F, "ATI" },
// { 0x0310, "Agere Systems" },
// { 0x0311, "NeoMagic" },
// { 0x0312, "AuroraNetics" },
{ 0x0313, "GEIL" },
{ 0x0314, "Mushkin" },
// { 0x0315, "Tioga Technologies" },
{ 0x0316, "Netlist" },
// { 0x0317, "TeraLogic" },
// { 0x0318, "Cicada Semiconductor" },
// { 0x0319, "Centon Electronics" },
// { 0x031A, "Tyco Electronics" },
// { 0x031B, "Magis Works" },
// { 0x031C, "Zettacom" },
// { 0x031D, "Cogency Semiconductor" },
// { 0x031E, "Chipcon AS" },
// { 0x031F, "Aspex Technology" },
// { 0x0320, "F5 Networks" },
// { 0x0321, "Programmable Silicon Solutions" },
// { 0x0322, "ChipWrights" },
// { 0x0323, "Acorn Networks" },
// { 0x0324, "Quicklogic" },
{ 0x0325, "Kingmax" },
// { 0x0326, "BOPS" },
// { 0x0327, "Flasys" },
// { 0x0328, "BitBlitz Communications" },
// { 0x0329, "eMemory Technology" },
// { 0x032A, "Procket Networks" },
// { 0x032B, "Purple Ray" },
// { 0x032C, "Trebia Networks" },
// { 0x032D, "Delta Electronics" },
// { 0x032E, "Onex Communications" },
// { 0x032F, "Ample Communications" },
// { 0x0330, "Memory Experts Intl" },
// { 0x0331, "Astute Networks" },
// { 0x0332, "Azanda Network Devices" },
// { 0x0333, "Dibcom" },
{ 0x0334, "Tekmos" },
// { 0x0335, "API NetWorks" },
// { 0x0336, "Bay Microsystems" },
// { 0x0337, "Firecron Ltd" },
// { 0x0338, "Resonext Communications" },
// { 0x0339, "Tachys Technologies" },
// { 0x033A, "Equator Technology" },
// { 0x033B, "Concept Computer" },
// { 0x033C, "SILCOM" },
// { 0x033D, "3Dlabs" },
// { 0x033E, "c&t Magazine" },
// { 0x033F, "Sanera Systems" },
// { 0x0340, "Silicon Packets" },
// { 0x0341, "Viasystems Group" },
// { 0x0342, "Simtek" },
// { 0x0343, "Semicon Devices Singapore" },
// { 0x0344, "Satron Handelsges" },
// { 0x0345, "Improv Systems" },
// { 0x0346, "INDUSYS GmbH" },
// { 0x0347, "Corrent" },
// { 0x0348, "Infrant Technologies" },
// { 0x0349, "Ritek Corp" },
// { 0x034A, "empowerTel Networks" },
// { 0x034B, "Hypertec" },
// { 0x034C, "Cavium Networks" },
// { 0x034D, "PLX Technology" },
// { 0x034E, "Massana Design" },
// { 0x034F, "Intrinsity" },
// { 0x0350, "Valence Semiconductor" },
// { 0x0351, "Terawave Communications" },
// { 0x0352, "IceFyre Semiconductor" },
// { 0x0353, "Primarion" },
// { 0x0354, "Picochip Designs Ltd" },
// { 0x0355, "Silverback Systems" },
// { 0x0356, "Jade Star Technologies" },
// { 0x0357, "Pijnenburg Securealink" },
{ 0x0358, "takeMS" }, // Ultron AG
// { 0x0359, "Cambridge Silicon Radio" },
{ 0x035A, "Swissbit" },
// { 0x035B, "Nazomi Communications" },
// { 0x035C, "eWave System" },
// { 0x035D, "Rockwell Collins" },
// { 0x035E, "Picocel Co Ltd (Paion)" },
// { 0x035F, "Alphamosaic Ltd" },
// { 0x0360, "Sandburst" },
// { 0x0361, "SiCon Video" },
// { 0x0362, "NanoAmp Solutions" },
// { 0x0363, "Ericsson Technology" },
// { 0x0364, "PrairieComm" },
// { 0x0365, "Mitac International" },
// { 0x0366, "Layer N Networks" },
// { 0x0367, "MtekVision (Atsana)" },
// { 0x0368, "Allegro Networks" },
// { 0x0369, "Marvell Semiconductors" },
// { 0x036A, "Netergy Microelectronic" },
{ 0x036B, "NVIDIA" },
// { 0x036C, "Internet Machines" },
// { 0x036D, "Memorysolution GmbH" },
// { 0x036E, "Litchfield Communication" },
// { 0x036F, "Accton Technology" },
// { 0x0370, "Teradiant Networks" },
// { 0x0371, "Scaleo Chip" },
// { 0x0372, "Cortina Systems" },
// { 0x0373, "RAM Components" },
// { 0x0374, "Raqia Networks" },
// { 0x0375, "ClearSpeed" },
// { 0x0376, "Matsushita Battery" },
// { 0x0377, "Xelerated" },
// { 0x0378, "SimpleTech" },
{ 0x0379, "Utron" },
// { 0x037A, "Astec International" },
// { 0x037B, "AVM gmbH" },
// { 0x037C, "Redux Communications" },
// { 0x037D, "Dot Hill Systems" },
// { 0x037E, "TeraChip" },
// { 0x0401, "T-RAM Incorporated" },
// { 0x0402, "Innovics Wireless" },
// { 0x0403, "Teknovus" },
// { 0x0404, "KeyEye Communications" },
// { 0x0405, "Runcom Technologies" },
// { 0x0406, "RedSwitch" },
// { 0x0407, "Dotcast" },
// { 0x0408, "Silicon Mountain Memory" },
// { 0x0409, "Signia Technologies" },
// { 0x040A, "Pixim" },
// { 0x040B, "Galazar Networks" },
// { 0x040C, "White Electronic Designs" },
// { 0x040D, "Patriot Scientific" },
// { 0x040E, "Neoaxiom Corporation" },
// { 0x040F, "3Y Power Technology" },
// { 0x0410, "Scaleo Chip" },
// { 0x0411, "Potentia Power Systems" },
// { 0x0412, "C-guys Incorporated" },
// { 0x0413, "Digital Communications Technology Inc" },
// { 0x0414, "Silicon-Based Technology" },
// { 0x0415, "Fulcrum Microsystems" },
{ 0x0416, "Positivo" },
// { 0x0417, "XIOtech Corporation" },
// { 0x0418, "PortalPlayer" },
// { 0x0419, "Zhiying Software" },
// { 0x041A, "ParkerVision Inc" },
// { 0x041B, "Phonex Broadband" },
// { 0x041C, "Skyworks Solutions" },
// { 0x041D, "Entropic Communications" },
// { 0x041E, "I&M Intelligent Memory Ltd" },
// { 0x041F, "Zensys A/S" },
// { 0x0420, "Legend Silicon Corp" },
// { 0x0421, "Sci-worx GmbH" },
// { 0x0422, "SMSC (Standard Microsystems)" },
// { 0x0423, "Renesas Electronics" },
// { 0x0424, "Raza Microelectronics" },
// { 0x0425, "Phyworks" },
{ 0x0426, "MediaTek" },
// { 0x0427, "Non-cents Productions" },
// { 0x0428, "US Modular" },
// { 0x0429, "Wintegra Ltd" },
// { 0x042A, "Mathstar" },
// { 0x042B, "StarCore" },
// { 0x042C, "Oplus Technologies" },
// { 0x042D, "Mindspeed" },
// { 0x042E, "Just Young Computer" },
// { 0x042F, "Radia Communications" },
{ 0x0430, "OCZ" },
// { 0x0431, "Emuzed" },
// { 0x0432, "LOGIC Devices" },
// { 0x0433, "Inphi Corporation" },
// { 0x0434, "Quake Technologies" },
// { 0x0435, "Vixel" },
// { 0x0436, "SolusTek" },
// { 0x0437, "Kongsberg Maritime" },
// { 0x0438, "Faraday Technology" },
// { 0x0439, "Altium Ltd" },
// { 0x043A, "Insyte" },
// { 0x043B, "ARM Ltd" },
// { 0x043C, "DigiVision" },
// { 0x043D, "Vativ Technologies" },
// { 0x043E, "Endicott Interconnect Technologies" },
// { 0x043F, "Pericom" },
// { 0x0440, "Bandspeed" },
// { 0x0441, "LeWiz Communications" },
// { 0x0442, "CPU Technology" },
{ 0x0443, "Ramaxel" },
// { 0x0444, "DSP Group" },
// { 0x0445, "Axis Communications" },
// { 0x0446, "Legacy Electronics" },
// { 0x0447, "Chrontel" },
// { 0x0448, "Powerchip Semiconductor" },
// { 0x0449, "MobilEye Technologies" },
{ 0x044A, "Excel" },
{ 0x044B, "A-DATA" },
// { 0x044C, "VirtualDigm" },
{ 0x044D, "G.Skill" },
{ 0x044E, "Quanta" },
// { 0x044F, "Yield Microelectronics" },
// { 0x0450, "Afa Technologies" },
// { 0x0451, "KINGBOX Technology Co Ltd" },
// { 0x0452, "Ceva" },
// { 0x0453, "iStor Networks" },
// { 0x0454, "Advance Modules" },
{ 0x0455, "Microsoft" },
{ 0x0456, "Open-Silicon" },
// { 0x0457, "Goal Semiconductor" },
// { 0x0458, "ARC International" },
// { 0x0459, "Simmtec" },
// { 0x045A, "Metanoia" },
// { 0x045B, "Key Stream" },
// { 0x045C, "Lowrance Electronics" },
// { 0x045D, "Adimos" },
// { 0x045E, "SiGe Semiconductor" },
// { 0x045F, "Fodus Communications" },
// { 0x0460, "Credence Systems Corp" },
// { 0x0461, "Genesis Microchip Inc" },
// { 0x0462, "Vihana Inc" },
// { 0x0463, "WIS Technologies" },
// { 0x0464, "GateChange Technologies" },
// { 0x0465, "High Density Devices AS" },
// { 0x0466, "Synopsys" },
{ 0x0467, "Gigaram" },
// { 0x0468, "Enigma Semiconductor Inc" },
// { 0x0469, "Century Micro Inc" },
// { 0x046A, "Icera Semiconductor" },
// { 0x046B, "Mediaworks Integrated Systems" },
// { 0x046C, "O?Neil Product Development" },
// { 0x046D, "Supreme Top Technology Ltd" },
// { 0x046E, "MicroDisplay Corporation" },
{ 0x046F, "Team Group" },
// { 0x0470, "Sinett Corporation" },
{ 0x0471, "Toshiba" },
// { 0x0472, "Tensilica" },
// { 0x0473, "SiRF Technology" },
// { 0x0474, "Bacoc Inc" },
// { 0x0475, "SMaL Camera Technologies" },
{ 0x0476, "Thomson SC" },
// { 0x0477, "Airgo Networks" },
// { 0x0478, "Wisair Ltd" },
// { 0x0479, "SigmaTel" },
// { 0x047A, "Arkados" },
// { 0x047B, "Compete IT gmbH Co KG" },
// { 0x047C, "Eudar Technology Inc" },
// { 0x047D, "Focus Enhancements" },
// { 0x047E, "Xyratex" },
// { 0x0501, "Specular Networks" },
{ 0x0502, "Patriot" },
// { 0x0503, "U-Chip Technology Corp" },
// { 0x0504, "Silicon Optix" },
// { 0x0505, "Greenfield Networks" },
{ 0x0506, "CompuRAM" },
// { 0x0507, "Stargen Inc" },
// { 0x0508, "NetCell Corporation" },
// { 0x0509, "Excalibrus Technologies Ltd" },
// { 0x050A, "SCM Microsystems" },
// { 0x050B, "Xsigo Systems Inc" },
// { 0x050C, "CHIPS & Systems Inc" },
// { 0x050D, "Tier 1 Multichip Solutions" },
// { 0x050E, "CWRL Labs" },
// { 0x050F, "Teradici" },
{ 0x0510, "Gigaram" },
// { 0x0511, "g2 Microsystems" },
// { 0x0512, "PowerFlash Semiconductor" },
// { 0x0513, "P.A. Semi Inc" },
// { 0x0514, "NovaTech Solutions S.A." },
// { 0x0515, "c2 Microsystems Inc" },
// { 0x0516, "Level5 Networks" },
{ 0x0517, "COS Memory" },
// { 0x0518, "Innovasic Semiconductor" },
// { 0x0519, "02IC Co Ltd" },
// { 0x051A, "Tabula Inc" },
{ 0x051B, "Crucial" },
// { 0x051C, "Chelsio Communications" },
// { 0x051D, "Solarflare Communications" },
// { 0x051E, "Xambala Inc" },
// { 0x051F, "EADS Astrium" },
// { 0x0520, "Terra Semiconductor Inc" },
// { 0x0521, "Imaging Works Inc" },
// { 0x0522, "Astute Networks Inc" },
// { 0x0523, "Tzero" },
// { 0x0524, "Emulex" },
// { 0x0525, "Power-One" },
// { 0x0526, "Pulse~LINK Inc" },
// { 0x0527, "Hon Hai Precision Industry" },
// { 0x0528, "White Rock Networks Inc" },
// { 0x0529, "Telegent Systems USA Inc" },
// { 0x052A, "Atrua Technologies Inc" },
{ 0x052B, "Acbel" },
// { 0x052C, "eRide Inc" },
// { 0x052D, "ULi Electronics Inc" },
// { 0x052E, "Magnum Semiconductor Inc" },
// { 0x052F, "neoOne Technology Inc" },
// { 0x0530, "Connex Technology Inc" },
// { 0x0531, "Stream Processors Inc" },
// { 0x0532, "Focus Enhancements" },
// { 0x0533, "Telecis Wireless Inc" },
// { 0x0534, "uNav Microelectronics" },
// { 0x0535, "Tarari Inc" },
// { 0x0536, "Ambric Inc" },
// { 0x0537, "Newport Media Inc" },
// { 0x0538, "VMTS" },
// { 0x0539, "Enuclia Semiconductor Inc" },
// { 0x053A, "Virtium Technology Inc" },
// { 0x053B, "Solid State System Co Ltd" },
// { 0x053C, "Kian Tech LLC" },
// { 0x053D, "Artimi" },
{ 0x053E, "PQI" },
// { 0x053F, "Avago Technologies" },
// { 0x0540, "ADTechnology" },
// { 0x0541, "Sigma Designs" },
// { 0x0542, "SiCortex Inc" },
// { 0x0543, "Ventura Technology Group" },
// { 0x0544, "eASIC" },
// { 0x0545, "M.H.S. SAS" },
{ 0x0546, "MSI" },
// { 0x0547, "Rapport Inc" },
// { 0x0548, "Makway International" },
// { 0x0549, "Broad Reach Engineering Co" },
// { 0x054A, "Semiconductor Mfg Intl Corp" },
// { 0x054B, "SiConnect" },
// { 0x054C, "FCI USA Inc" },
// { 0x054D, "Validity Sensors" },
// { 0x054E, "Coney Technology Co Ltd" },
// { 0x054F, "Spans Logic" },
// { 0x0550, "Neterion Inc" },
{ 0x0551, "Qimonda" },
// { 0x0552, "New Japan Radio Co Ltd" },
// { 0x0553, "Velogix" },
// { 0x0554, "Montalvo Systems" },
// { 0x0555, "iVivity Inc" },
{ 0x0556, "Walton Chaintech" },
{ 0x0557, "AENEON" },
// { 0x0558, "Lorom Industrial Co Ltd" },
// { 0x0559, "Radiospire Networks" },
// { 0x055A, "Sensio Technologies Inc" },
// { 0x055B, "Nethra Imaging" },
{ 0x055C, "Hexon" },
// { 0x055D, "CompuStocx (CSX)" },
// { 0x055E, "Methode Electronics Inc" },
// { 0x055F, "Connect One Ltd" },
// { 0x0560, "Opulan Technologies" },
// { 0x0561, "Septentrio NV" },
{ 0x0562, "Goldenmars" },
{ 0x0563, "Kreton Corp." },
// { 0x0564, "Cochlear Ltd" },
// { 0x0565, "Altair Semiconductor" },
// { 0x0566, "NetEffect Inc" },
{ 0x0567, "Spansion" },
// { 0x0568, "Taiwan Semiconductor Mfg" },
// { 0x0569, "Emphany Systems Inc" },
// { 0x056A, "ApaceWave Technologies" },
// { 0x056B, "Mobilygen Corporation" },
// { 0x056C, "Tego" },
// { 0x056D, "Cswitch Corporation" },
// { 0x056E, "Haier (Beijing) IC Design Co" },
// { 0x056F, "MetaRAM" },
// { 0x0570, "Axel Electronics Co Ltd" },
// { 0x0571, "Tilera Corporation" },
// { 0x0572, "Aquantia" },
// { 0x0573, "Vivace Semiconductor" },
// { 0x0574, "Redpine Signals" },
// { 0x0575, "Octalica" },
// { 0x0576, "InterDigital Communications" },
// { 0x0577, "Avant Technology" },
{ 0x0578, "Asrock" },
// { 0x0579, "Availink" },
// { 0x057A, "Quartics Inc" },
// { 0x057B, "Element CXI" },
// { 0x057C, "Innovaciones Microelectronicas" },
// { 0x057D, "VeriSilicon Microelectronics" },
// { 0x057E, "W5 Networks" },
// { 0x0601, "MOVEKING" },
// { 0x0602, "Mavrix Technology Inc" },
// { 0x0603, "CellGuide Ltd" },
// { 0x0604, "Faraday Technology" },
// { 0x0605, "Diablo Technologies Inc" },
// { 0x0606, "Jennic" },
// { 0x0607, "Octasic" },
// { 0x0608, "Molex Incorporated" },
// { 0x0609, "3Leaf Networks" },
// { 0x060A, "Bright Micron Technology" },
// { 0x060B, "Netxen" },
// { 0x060C, "NextWave Broadband Inc" },
// { 0x060D, "DisplayLink" },
// { 0x060E, "ZMOS Technology" },
// { 0x060F, "Tec-Hill" },
// { 0x0610, "Multigig Inc" },
// { 0x0611, "Amimon" },
// { 0x0612, "Euphonic Technologies Inc" },
// { 0x0613, "BRN Phoenix" },
// { 0x0614, "InSilica" },
// { 0x0615, "Ember Corporation" },
{ 0x0616, "Avexir" },
// { 0x0617, "Echelon Corporation" },
// { 0x0618, "Edgewater Computer Systems" },
// { 0x0619, "XMOS Semiconductor Ltd" },
// { 0x061A, "GENUSION Inc" },
// { 0x061B, "Memory Corp NV" },
// { 0x061C, "SiliconBlue Technologies" },
{ 0x061D, "Rambus" },
// { 0x061E, "Andes Technology Corporation" },
// { 0x061F, "Coronis Systems" },
// { 0x0620, "Achronix Semiconductor" },
// { 0x0621, "Siano Mobile Silicon Ltd" },
// { 0x0622, "Semtech Corporation" },
// { 0x0623, "Pixelworks Inc" },
// { 0x0624, "Gaisler Research AB" },
// { 0x0625, "Teranetics" },
// { 0x0626, "Toppan Printing Co Ltd" },
// { 0x0627, "Kingxcon" },
// { 0x0628, "Silicon Integrated Systems" },
// { 0x0629, "I-O Data Device Inc" },
// { 0x062A, "NDS Americas Inc" },
// { 0x062B, "Solomon Systech Limited" },
// { 0x062C, "On Demand Microelectronics" },
// { 0x062D, "Amicus Wireless Inc" },
// { 0x062E, "SMARDTV SNC" },
// { 0x062F, "Comsys Communication Ltd" },
// { 0x0630, "Movidia Ltd" },
// { 0x0631, "Javad GNSS Inc" },
// { 0x0632, "Montage Technology Group" },
// { 0x0633, "Trident Microsystems" },
{ 0x0634, "Super Talent" },
// { 0x0635, "Optichron Inc" },
// { 0x0636, "Future Waves UK Ltd" },
// { 0x0637, "SiBEAM Inc" },
// { 0x0638, "InicoreInc" },
// { 0x0639, "Virident Systems" },
// { 0x063A, "M2000 Inc" },
// { 0x063B, "ZeroG Wireless Inc" },
// { 0x063C, "Gingle Technology Co Ltd" },
// { 0x063D, "Space Micro Inc" },
// { 0x063E, "Wilocity" },
// { 0x063F, "Novafora Inc" },
// { 0x0640, "iKoa Corporation" },
{ 0x0641, "ASint" },
{ 0x0642, "Ramtron" },
// { 0x0643, "Plato Networks Inc" },
// { 0x0644, "IPtronics AS" },
// { 0x0645, "Infinite-Memories" },
// { 0x0646, "Parade Technologies Inc" },
// { 0x0647, "Dune Networks" },
{ 0x0648, "GigaDevice" },
// { 0x0649, "Modu Ltd" },
// { 0x064A, "CEITEC" },
{ 0x064B, "Northrop Grumman" },
// { 0x064C, "XRONET Corporation" },
// { 0x064D, "Sicon Semiconductor AB" },
// { 0x064E, "Atla Electronics Co Ltd" },
// { 0x064F, "TOPRAM Technology" },
// { 0x0650, "Silego Technology Inc" },
{ 0x0651, "Kinglife" },
// { 0x0652, "Ability Industries Ltd" },
// { 0x0654, "Augusta Technology Inc" },
// { 0x0655, "Nantronics Semiconductors" },
// { 0x0656, "Hilscher Gesellschaft" },
// { 0x0657, "Quixant Ltd" },
// { 0x0658, "Percello Ltd" },
// { 0x0659, "NextIO Inc" },
// { 0x065A, "Scanimetrics Inc" },
// { 0x065B, "FS-Semi Company Ltd" },
// { 0x065C, "Infinera Corporation" },
{ 0x065D, "SandForce" },
{ 0x065E, "Lexar Media" },
// { 0x065F, "Teradyne Inc" },
// { 0x0660, "Memory Exchange Corp" },
{ 0x0661, "Smartek" },
// { 0x0662, "Avantium Corporation" },
// { 0x0663, "ATP Electronics Inc" },
// { 0x0664, "Valens Semiconductor Ltd" },
// { 0x0665, "Agate Logic Inc" },
// { 0x0666, "Netronome" },
// { 0x0667, "Zenverge Inc" },
// { 0x0668, "N-trig Ltd" },
{ 0x0669, "SanMax" },
// { 0x066A, "Contour Semiconductor Inc" },
{ 0x066B, "TwinMOS" },
// { 0x066C, "Silicon Systems Inc" },
// { 0x066D, "V-Color Technology Inc" },
// { 0x066E, "Certicom Corporation" },
// { 0x066F, "JSC ICC Milandr" },
// { 0x0670, "PhotoFast Global Inc" },
// { 0x0671, "InnoDisk Corporation" },
// { 0x0672, "Muscle Power" },
// { 0x0673, "Energy Micro" },
// { 0x0674, "Innofidei" },
// { 0x0675, "CopperGate Communications" },
// { 0x0676, "Holtek Semiconductor Inc" },
// { 0x0677, "Myson Century Inc" },
// { 0x0678, "FIDELIX" },
// { 0x0679, "Red Digital Cinema" },
// { 0x067A, "Densbits Technology" },
// { 0x067B, "Zempro" },
// { 0x067C, "MoSys" },
// { 0x067D, "Provigent" },
// { 0x067E, "Triad Semiconductor Inc" },
// { 0x0701, "Siklu Communication Ltd" },
// { 0x0702, "A Force Manufacturing Ltd" },
// { 0x0703, "Strontium" },
// { 0x0704, "ALi Corp (Abilis Systems)" },
// { 0x0705, "Siglead Inc" },
// { 0x0706, "Ubicom Inc" },
// { 0x0707, "Unifosa Corporation" },
// { 0x0708, "Stretch Inc" },
// { 0x0709, "Lantiq Deutschland GmbH" },
// { 0x070A, "Visipro." },
// { 0x070B, "EKMemory" },
// { 0x070C, "Microelectronics Institute ZTE" },
// { 0x070D, "u-blox AG" },
// { 0x070E, "Carry Technology Co Ltd" },
// { 0x070F, "Nokia" },
{ 0x0710, "King Tiger" },
// { 0x0711, "Sierra Wireless" },
// { 0x0712, "HT Micron" },
// { 0x0713, "Albatron Technology Co Ltd" },
// { 0x0714, "Leica Geosystems AG" },
// { 0x0715, "BroadLight" },
// { 0x0716, "AEXEA" },
// { 0x0717, "ClariPhy Communications Inc" },
// { 0x0718, "Green Plug" },
// { 0x0719, "Design Art Networks" },
// { 0x071A, "Mach Xtreme Technology Ltd" },
// { 0x071B, "ATO Solutions Co Ltd" },
// { 0x071C, "Ramsta" },
// { 0x071D, "Greenliant Systems Ltd" },
// { 0x071E, "Teikon" },
// { 0x071F, "Antec Hadron" },
// { 0x0720, "NavCom Technology Inc" },
// { 0x0721, "Shanghai Fudan Microelectronics" },
// { 0x0722, "Calxeda Inc" },
// { 0x0723, "JSC EDC Electronics" },
// { 0x0724, "Kandit Technology Co Ltd" },
{ 0x0725, "Ramos" },
// { 0x0726, "Goldenmars Technology" },
// { 0x0727, "XeL Technology Inc" },
// { 0x0728, "Newzone Corporation" },
// { 0x0729, "ShenZhen MercyPower Tech" },
// { 0x072A, "Nanjing Yihuo Technology" },
// { 0x072B, "Nethra Imaging Inc" },
// { 0x072C, "SiTel Semiconductor BV" },
// { 0x072D, "SolidGear Corporation" },
{ 0x072E, "Topower" },
// { 0x072F, "Wilocity" },
// { 0x0730, "Profichip GmbH" },
// { 0x0731, "Gerad Technologies" },
{ 0x0732, "Ritek" },
// { 0x0733, "Gomos Technology Limited" },
// { 0x0734, "Memoright Corporation" },
// { 0x0735, "D-Broad Inc" },
// { 0x0736, "HiSilicon Technologies" },
// { 0x0737, "Syndiant Inc." },
// { 0x0738, "Enverv Inc" },
// { 0x0739, "Cognex" },
// { 0x073A, "Xinnova Technology Inc" },
// { 0x073B, "Ultron AG" },
// { 0x073C, "Concord Idea Corporation" },
// { 0x073D, "AIM Corporation" },
// { 0x073E, "Lifetime Memory Products" },
// { 0x073F, "Ramsway" },
// { 0x0740, "Recore Systems B.V." },
// { 0x0741, "Haotian Jinshibo Science Tech" },
// { 0x0742, "Being Advanced Memory" },
// { 0x0743, "Adesto Technologies" },
// { 0x0744, "Giantec Semiconductor Inc" },
// { 0x0745, "HMD Electronics AG" },
// { 0x0746, "Gloway International (HK)" },
// { 0x0747, "Kingcore" },
// { 0x0748, "Anucell Technology Holding" },
// { 0x0749, "Accord Software & Systems Pvt. Ltd" },
// { 0x074A, "Active-Semi Inc" },
// { 0x074B, "Denso Corporation" },
// { 0x074C, "TLSI Inc" },
// { 0x074D, "Qidan" },
// { 0x074E, "Mustang" },
// { 0x074F, "Orca Systems" },
// { 0x0750, "Passif Semiconductor" },
// { 0x0752, "Memphis Electronic" },
// { 0x0753, "Beckhoff Automation GmbH" },
// { 0x0754, "Harmony Semiconductor Corp" },
// { 0x0755, "Air Computers SRL" },
// { 0x0756, "TMT Memory" },
// { 0x0757, "Eorex Corporation" },
// { 0x0758, "Xingtera" },
// { 0x0759, "Netsol" },
// { 0x075A, "Bestdon Technology Co Ltd" },
// { 0x075B, "Baysand Inc" },
// { 0x075C, "Uroad Technology Co Ltd" },
{ 0x075D, "Wilk Elektronik" },
// { 0x075E, "AAI" },
// { 0x075F, "Harman" },
// { 0x0760, "Berg Microelectronics Inc" },
// { 0x0761, "ASSIA Inc" },
// { 0x0762, "Visiontek Products LLC" },
{ 0x0763, "OCMEMORY" },
// { 0x0764, "Welink Solution Inc" },
// { 0x0765, "Shark Gaming" },
// { 0x0766, "Avalanche Technology" },
// { 0x0767, "R&D Center ELVEES OJSC" },
{ 0x0768, "KingboMars" },
{ 0x076A, "Transcend" },
// { 0x076B, "Everspin Technologies" },
// { 0x076C, "Hon-Hai Precision" },
// { 0x076D, "Smart Storage Systems" },
// { 0x076E, "Toumaz Group" },
// { 0x076F, "Zentel Electronics Corporation" },
// { 0x0770, "Panram International Corporation" },
// { 0x0771, "Silicon Space Technology" },
{ 0x0772, "LITE-ON" },
// { 0x0773, "Inuitive" },
// { 0x0774, "HMicro" },
// { 0x0775, "BittWare Inc" },
// { 0x0776, "GLOBALFOUNDRIES" },
// { 0x0777, "ACPI Digital Co Ltd" },
// { 0x0778, "Annapurna Labs" },
// { 0x0779, "AcSiP Technology Corporation" },
// { 0x077A, "Idea! Electronic Systems" },
// { 0x077B, "Gowe Technology Co Ltd" },
// { 0x077C, "Hermes Testing Solutions Inc" },
// { 0x077D, "Positivo BGH" },
// { 0x077E, "Intelligence Silicon Technology" },
// { 0x0801, "3D PLUS" },
// { 0x0802, "Diehl Aerospace" },
// { 0x0803, "Fairchild" },
// { 0x0804, "Mercury Systems" },
// { 0x0805, "Sonics Inc" },
// { 0x0806, "Emerson Automation Solutions" },
// { 0x0807, "Shenzhen Jinge Information Co Ltd" },
// { 0x0808, "SCWW" },
// { 0x0809, "Silicon Motion Inc" },
// { 0x080A, "Anurag" },
// { 0x080B, "King Kong" },
// { 0x080C, "FROM30 Co Ltd" },
// { 0x080D, "Gowin Semiconductor Corp" },
// { 0x080E, "Fremont Micro Devices Ltd" },
// { 0x080F, "Ericsson Modems" },
// { 0x0810, "Exelis" },
// { 0x0811, "Satixfy Ltd" },
// { 0x0812, "Galaxy Microsystems Ltd" },
{ 0x0813, "Gloway" },
// { 0x0814, "Lab" },
// { 0x0815, "Smart Energy Instruments" },
// { 0x0816, "Approved Memory Corporation" },
// { 0x0817, "Axell Corporation" },
{ 0x0818, "KLEVV" },
// { 0x0819, "Phytium" },
// { 0x081A, "Xi'an UniIC Semiconductors Co Ltd" },
// { 0x081B, "Ambiq Micro" },
// { 0x081C, "eveRAM Technology Inc" },
// { 0x081D, "Infomax" },
// { 0x081E, "Butterfly Network Inc" },
// { 0x081F, "Shenzhen City Gcai Electronics" },
// { 0x0820, "Stack Devices Corporation" },
// { 0x0821, "ADK Media Group" },
// { 0x0822, "TSP Global Co Ltd" },
// { 0x0823, "HighX" },
// { 0x0824, "Shenzhen Elicks Technology" },
// { 0x0825, "XinKai/Silicon Kaiser" },
{ 0x0826, "Google" },
// { 0x0827, "Dasima International Development" },
// { 0x0828, "Leahkinn Technology Limited" },
// { 0x0829, "HIMA Paul Hildebrandt GmbH Co KG" },
{ 0x082A, "Keysight" },
// { 0x082B, "Techcomp International (Fastable)" },
// { 0x082C, "Ancore Technology Corporation" },
// { 0x082D, "Nuvoton" },
// { 0x082E, "Korea Uhbele International Group Ltd" },
// { 0x082F, "Ikegami Tsushinki Co Ltd" },
// { 0x0830, "RelChip Inc" },
// { 0x0831, "Baikal Electronics" },
// { 0x0832, "Nemostech Inc" },
{ 0x0833, "Memorysolution" },
// { 0x0834, "Silicon Integrated Systems Corporation" },
// { 0x0835, "Xiede" },
// { 0x0836, "BRC" },
// { 0x0837, "Flash Chi" },
// { 0x0838, "Jone" },
// { 0x0839, "GCT Semiconductor Inc" },
// { 0x083A, "Hong Kong Zetta Device Technology" },
// { 0x083B, "Unimemory Technology(s) Pte Ltd" },
// { 0x083C, "Cuso" },
// { 0x083D, "Kuso" },
// { 0x083E, "Uniquify Inc" },
// { 0x083F, "Skymedi Corporation" },
// { 0x0840, "Core Chance Co Ltd" },
// { 0x0841, "Tekism Co Ltd" },
// { 0x0842, "Seagate Technology PLC" },
// { 0x0843, "Hong Kong Gaia Group Co Limited" },
// { 0x0844, "Gigacom Semiconductor LLC" },
// { 0x0845, "V2 Technologies" },
// { 0x0846, "TLi" },
// { 0x0847, "Neotion" },
{ 0x0848, "Lenovo" },
// { 0x0849, "Shenzhen Zhongteng Electronic Corp Ltd" },
// { 0x084A, "Compound Photonics" },
// { 0x084B, "in2H2 inc" },
// { 0x084C, "Shenzhen Pango Microsystems Co Ltd" },
// { 0x084D, "Vasekey" },
// { 0x084F, "Eyenix Co Ltd" },
{ 0x0850, "Heoriady" },
// { 0x0851, "Accelerated Memory Production Inc" },
// { 0x0852, "INVECAS Inc" },
// { 0x0853, "AP Memory" },
// { 0x0854, "Douqi Technology" },
// { 0x0855, "Etron Technology Inc" },
// { 0x0856, "Indie Semiconductor" },
// { 0x0857, "Socionext Inc" },
{ 0x0858, "HGST" },
{ 0x0859, "EVGA" },
// { 0x085A, "Audience Inc" },
// { 0x085B, "EpicGear" },
// { 0x085C, "Vitesse Enterprise Co" },
// { 0x085D, "Foxtronn International Corporation" },
// { 0x085E, "Bretelon Inc" },
// { 0x085F, "Graphcore" },
// { 0x0860, "Eoplex Inc" },
// { 0x0861, "MaxLinear Inc" },
// { 0x0862, "ETA Devices" },
// { 0x0863, "LOKI" },
// { 0x0864, "IMS Electronics Co Ltd" },
// { 0x0865, "Dosilicon Co Ltd" },
// { 0x0866, "Dolphin Integration" },
// { 0x0867, "Shenzhen Mic Electronics Technolog" },
// { 0x0868, "Boya Microelectronics Inc" },
// { 0x0869, "Geniachip (Roche)" },
// { 0x086A, "Axign" },
// { 0x086B, "Kingred Electronic Technology Ltd" },
// { 0x086C, "Chao Yue Zhuo Computer Business Dept." },
// { 0x086E, "Crocus Technology Inc" },
// { 0x086F, "Creative Chips GmbH" },
// { 0x0870, "GE Aviation Systems LLC." },
// { 0x0871, "Asgard" },
// { 0x0872, "Good Wealth Technology Ltd" },
// { 0x0873, "TriCor Technologies" },
// { 0x0874, "Nova-Systems GmbH" },
// { 0x0875, "JUHOR" },
// { 0x0876, "Zhuhai Douke Commerce Co Ltd" },
// { 0x0877, "DSL Memory" },
// { 0x0878, "Anvo-Systems Dresden GmbH" },
{ 0x0879, "Realtek" },
// { 0x087A, "AltoBeam" },
// { 0x087B, "Wave Computing" },
// { 0x087C, "Beijing TrustNet Technology Co Ltd" },
// { 0x087D, "Innovium Inc" },
// { 0x087E, "Starsway Technology Limited" },
// { 0x0901, "Weltronics Co LTD" },
{ 0x0902, "VMware" },
{ 0x0903, "HPE" },
// { 0x0904, "INTENSO" },
// { 0x0905, "Puya Semiconductor" },
// { 0x0906, "MEMORFI" },
// { 0x0907, "MSC Technologies GmbH" },
// { 0x0908, "Txrui" },
// { 0x0909, "SiFive Inc" },
// { 0x090A, "Spreadtrum Communications" },
// { 0x090B, "XTX Technology Limited" },
// { 0x090C, "UMAX Technology" },
// { 0x090D, "Shenzhen Yong Sheng Technology" },
// { 0x090E, "SNOAMOO (Shenzhen Kai Zhuo Yue)" },
// { 0x090F, "Daten Tecnologia LTDA" },
// { 0x0910, "Shenzhen XinRuiYan Electronics" },
// { 0x0911, "Eta Compute" },
// { 0x0912, "Energous" },
// { 0x0913, "Raspberry Pi Trading Ltd" },
// { 0x0914, "Shenzhen Chixingzhe Tech Co Ltd" },
// { 0x0915, "Silicon Mobility" },
// { 0x0916, "IQ-Analog Corporation" },
// { 0x0917, "Uhnder Inc" },
// { 0x0918, "Impinj" },
// { 0x0919, "DEPO Computers" },
// { 0x091A, "Nespeed Sysems" },
// { 0x091B, "Yangtze Memory Technologies Co Ltd" },
// { 0x091C, "MemxPro Inc" },
// { 0x091D, "Tammuz Co Ltd" },
{ 0x091E, "Allwinner" },
// { 0x0920, "XMC" },
// { 0x0921, "Teclast" },
// { 0x0922, "Maxsun" },
// { 0x0923, "Haiguang Integrated Circuit Design" },
{ 0x0924, "RamCENTER" },
// { 0x0925, "Phison Electronics Corporation" },
// { 0x0926, "Guizhou Huaxintong Semi-Conductor" },
// { 0x0927, "Network Intelligence" },
// { 0x0928, "Continental Technology (Holdings)" },
// { 0x0929, "Guangzhou Huayan Suning Electronic" },
// { 0x092A, "Guangzhou Zhouji Electronic Co Ltd" },
// { 0x092B, "Shenzhen Giant Hui Kang Tech Co Ltd" },
// { 0x092C, "Shenzhen Yilong Innovative Co Ltd" },
// { 0x092D, "Neo Forza" },
// { 0x092E, "Lyontek Inc" },
// { 0x092F, "Shanghai Kuxin Microelectronics Ltd" },
// { 0x0930, "Shenzhen Larix Technology Co Ltd" },
// { 0x0931, "Qbit Semiconductor Ltd" },
// { 0x0932, "Insignis Technology Corporation" },
// { 0x0933, "Lanson Memory Co Ltd" },
// { 0x0934, "Shenzhen Superway Electronics Co Ltd" },
// { 0x0935, "Canaan-Creative Co Ltd" },
// { 0x0936, "Black Diamond Memory" },
// { 0x0937, "Shenzhen City Parker Baking Electronics" },
// { 0x0938, "Shenzhen Baihong Technology Co Ltd" },
// { 0x0939, "GEO Semiconductors" },
// { 0x093A, "OCPC" },
// { 0x093B, "Artery Technology Co Ltd" },
// { 0x093C, "Jinyu" },
// { 0x093D, "ShenzhenYing Chi Technology Development" },
// { 0x093E, "Shenzhen Pengcheng Xin Technology" },
// { 0x093F, "Pegasus Semiconductor (Shanghai) Co" },
// { 0x0940, "Mythic Inc" },
// { 0x0941, "Elmos Semiconductor AG" },
{ 0x0942, "Kllisre" },
// { 0x0943, "Shenzhen Winconway Technology" },
// { 0x0944, "Shenzhen Xingmem Technology Corp" },
// { 0x0945, "Gold Key Technology Co Ltd" },
// { 0x0946, "Habana Labs Ltd" },
// { 0x0947, "Hoodisk Electronics Co Ltd" },
// { 0x0948, "SemsoTai (SZ) Technology Co Ltd" },
// { 0x0949, "OM Nanotech Pvt. Ltd" },
// { 0x094A, "Shenzhen Zhifeng Weiye Technology" },
// { 0x094B, "Xinshirui (Shenzhen) Electronics Co" },
// { 0x094C, "Guangzhou Zhong Hao Tian Electronic" },
// { 0x094D, "Shenzhen Longsys Electronics Co Ltd" },
// { 0x094E, "Deciso B.V." },
// { 0x094F, "Puya Semiconductor (Shenzhen)" },
// { 0x0950, "Shenzhen Veineda Technology Co Ltd" },
// { 0x0951, "Antec Memory" },
// { 0x0952, "Cortus SAS" },
// { 0x0953, "Dust Leopard" },
// { 0x0954, "MyWo AS" },
// { 0x0955, "J&A Information Inc" },
// { 0x0956, "Shenzhen JIEPEI Technology Co Ltd" },
// { 0x0957, "Heidelberg University" },
// { 0x0958, "Flexxon PTE Ltd" },
// { 0x0959, "Wiliot" },
// { 0x095A, "Raysun Electronics International Ltd" },
// { 0x095B, "Aquarius Production Company LLC" },
// { 0x095C, "MACNICA DHW LTDA" },
// { 0x095D, "Intelimem" },
// { 0x095E, "Zbit Semiconductor Inc" },
// { 0x095F, "Shenzhen Technology Co Ltd" },
// { 0x0960, "Signalchip" },
// { 0x0961, "Shenzen Recadata Storage Technology" },
// { 0x0962, "Hyundai Technology" },
// { 0x0963, "Shanghai Fudi Investment Development" },
// { 0x0964, "Aixi Technology" },
// { 0x0965, "Tecon MT" },
// { 0x0966, "Onda Electric Co Ltd" },
// { 0x0967, "Jinshen" },
// { 0x0968, "Kimtigo Semiconductor (HK) Limited" },
// { 0x0969, "IIT Madras" },
// { 0x096A, "Shenshan (Shenzhen) Electronic" },
// { 0x096B, "Hefei Core Storage Electronic Limited" },
// { 0x096C, "Colorful Technology Ltd" },
// { 0x096D, "Visenta (Xiamen) Technology Co Ltd" },
// { 0x096E, "Roa Logic BV" },
// { 0x096F, "NSITEXE Inc" },
// { 0x0970, "Hong Kong Hyunion Electronics" },
// { 0x0971, "ASK Technology Group Limited" },
{ 0x0972, "GIGABYTE" },
// { 0x0973, "Terabyte Co Ltd" },
// { 0x0974, "Hyundai Inc" },
// { 0x0975, "EXCELERAM" },
// { 0x0976, "PsiKick" },
{ 0x0977, "Netac" },
{ 0x0978, "PCCOOLER" },
// { 0x0979, "Jiangsu Huacun Electronic Technology" },
// { 0x097A, "Shenzhen Micro Innovation Industry" },
// { 0x097B, "Beijing Tongfang Microelectronics Co" },
// { 0x097C, "XZN Storage Technology" },
// { 0x097D, "ChipCraft Sp. z.o.o." },
// { 0x097E, "ALLFLASH Technology Limited" },
// { 0x0A01, "Foerd Technology Co Ltd" },
{ 0x0A02, "KingSpec" },
// { 0x0A03, "Codasip GmbH" },
// { 0x0A04, "SL Link Co Ltd" },
// { 0x0A05, "Shenzhen Kefu Technology Co Limited" },
// { 0x0A06, "Shenzhen ZST Electronics Technology" },
// { 0x0A07, "Kyokuto Electronic Inc" },
// { 0x0A08, "Warrior Technology" },
// { 0x0A09, "TRINAMIC Motion Control GmbH & Co" },
// { 0x0A0A, "PixelDisplay Inc" },
// { 0x0A0B, "Shenzhen Futian District Bo Yueda Elec" },
// { 0x0A0C, "Richtek Power" },
// { 0x0A0D, "Shenzhen LianTeng Electronics Co Ltd" },
// { 0x0A0E, "AITC Memory" },
// { 0x0A0F, "UNIC Memory Technology Co Ltd" },
// { 0x0A10, "Shenzhen Huafeng Science Technology" },
// { 0x0A11, "CXMT" },
// { 0x0A13, "SambaNova Systems" },
// { 0x0A14, "V-GEN" },
// { 0x0A15, "Jump Trading" },
// { 0x0A16, "Ampere Computing" },
// { 0x0A17, "Shenzhen Zhongshi Technology Co Ltd" },
// { 0x0A18, "Shenzhen Zhongtian Bozhong Technology" },
// { 0x0A19, "Tri-Tech International" },
// { 0x0A1A, "Silicon Intergrated Systems Corporation" },
// { 0x0A1B, "Shenzhen HongDingChen Information" },
// { 0x0A1C, "Plexton Holdings Limited" },
// { 0x0A1D, "AMS (Jiangsu Advanced Memory Semi)" },
// { 0x0A1E, "Wuhan Jing Tian Interconnected Tech Co" },
// { 0x0A1F, "Axia Memory Technology" },
// { 0x0A20, "Chipset Technology Holding Limited" },
// { 0x0A21, "Shenzhen Xinshida Technology Co Ltd" },
// { 0x0A22, "Shenzhen Chuangshifeida Technology" },
// { 0x0A23, "Guangzhou MiaoYuanJi Technology" },
// { 0x0A24, "ADVAN Inc" },
// { 0x0A26, "Guangzhou Guang Xie Cheng Trading" },
// { 0x0A27, "StarRam International Co Ltd" },
// { 0x0A28, "Shen Zhen XinShenHua Tech Co Ltd" },
// { 0x0A29, "UltraMemory Inc" },
// { 0x0A2A, "New Coastline Global Tech Industry Co" },
// { 0x0A2B, "Sinker" },
// { 0x0A2C, "Diamond" },
// { 0x0A2D, "PUSKILL" },
// { 0x0A2E, "Guangzhou Hao Jia Ye Technology Co" },
// { 0x0A2F, "Ming Xin Limited" },
// { 0x0A30, "Barefoot Networks" },
// { 0x0A31, "Biwin Semiconductor (HK) Co Ltd" },
// { 0x0A32, "UD INFO Corporation" },
// { 0x0A33, "Trek Technology (S) PTE Ltd" },
// { 0x0A34, "Xiamen Kingblaze Technology Co Ltd" },
// { 0x0A35, "Shenzhen Lomica Technology Co Ltd" },
// { 0x0A36, "Nuclei System Technology Co Ltd" },
// { 0x0A37, "Wuhan Xun Zhan Electronic Technology" },
// { 0x0A38, "Shenzhen Ingacom Semiconductor Ltd" },
// { 0x0A39, "Zotac Technology Ltd" },
// { 0x0A3A, "Foxline" },
// { 0x0A3B, "Shenzhen Farasia Science Technology" },
// { 0x0A3C, "Efinix Inc" },
// { 0x0A3D, "Hua Nan San Xian Technology Co Ltd" },
// { 0x0A3E, "Goldtech Electronics Co Ltd" },
// { 0x0A3F, "Shanghai Han Rong Microelectronics Co" },
// { 0x0A40, "Shenzhen Zhongguang Yunhe Trading" },
// { 0x0A41, "Smart Shine(QingDao) Microelectronics" },
// { 0x0A42, "Thermaltake Technology Co Ltd" },
// { 0x0A43, "Shenzhen O?Yang Maile Technology Ltd" },
// { 0x0A44, "UPMEM" },
{ 0x0A45, "Chun Well" },
// { 0x0A46, "Astera Labs Inc" },
// { 0x0A47, "Winconway" },
// { 0x0A48, "Advantech Co Ltd" },
// { 0x0A49, "Chengdu Fengcai Electronic Technology" },
// { 0x0A4A, "The Boeing Company" },
// { 0x0A4B, "Blaize Inc" },
// { 0x0A4C, "Ramonster Technology Co Ltd" },
// { 0x0A4D, "Wuhan Naonongmai Technology Co Ltd" },
// { 0x0A4E, "Shenzhen Hui ShingTong Technology" },
// { 0x0A4F, "Yourlyon" },
// { 0x0A50, "Fabu Technology" },
// { 0x0A51, "Shenzhen Yikesheng Technology Co Ltd" },
// { 0x0A52, "NOR-MEM" },
// { 0x0A53, "Cervoz Co Ltd" },
// { 0x0A54, "Bitmain Technologies Inc." },
{ 0x0A55, "Facebook" },
// { 0x0A56, "Shenzhen Longsys Electronics Co Ltd" },
// { 0x0A57, "Guangzhou Siye Electronic Technology" },
// { 0x0A58, "Silergy" },
// { 0x0A59, "Adamway" },
// { 0x0A5A, "PZG" },
// { 0x0A5B, "Shenzhen King Power Electronics" },
// { 0x0A5C, "Guangzhou ZiaoFu Tranding Co Ltd" },
// { 0x0A5D, "Shenzhen SKIHOTAR Semiconductor" },
// { 0x0A5E, "PulseRain Technology" },
// { 0x0A5F, "Seeker Technology Limited" },
// { 0x0A60, "Shenzhen OSCOO Tech Co Ltd" },
// { 0x0A61, "Shenzhen Yze Technology Co Ltd" },
// { 0x0A62, "Shenzhen Jieshuo Electronic Commerce" },
// { 0x0A63, "Gazda" },
// { 0x0A64, "Hua Wei Technology Co Ltd" },
// { 0x0A65, "Esperanto Technologies" },
// { 0x0A66, "JinSheng Electronic (Shenzhen) Co Ltd" },
// { 0x0A67, "Shenzhen Shi Bolunshuai Technology" },
// { 0x0A68, "Shanghai Rei Zuan Information Tech" },
{ 0x0A69, "Fraunhofer IIS" },
// { 0x0A6A, "Kandou Bus SA" },
{ 0x0A6B, "Acer" },
// { 0x0A6C, "Artmem Technology Co Ltd" },
// { 0x0A6D, "Gstar Semiconductor Co Ltd" },
// { 0x0A6E, "ShineDisk" },
// { 0x0A6F, "Shenzhen CHN Technology Co Ltd" },
// { 0x0A70, "UnionChip Semiconductor Co Ltd" },
// { 0x0A71, "Tanbassh" },
// { 0x0A72, "Shenzhen Tianyu Jieyun Intl Logistics" },
// { 0x0A73, "MCLogic Inc" },
// { 0x0A74, "Eorex Corporation" },
// { 0x0A75, "Arm Technology (China) Co Ltd" },
{ 0x0A76, "Lexar" },
// { 0x0A77, "QinetiQ Group plc" },
// { 0x0A78, "Exascend" },
// { 0x0A79, "Hong Kong Hyunion Electronics Co Ltd" },
// { 0x0A7A, "Shenzhen Banghong Electronics Co Ltd" },
// { 0x0A7B, "MBit Wireless Inc" },
// { 0x0A7C, "Hex Five Security Inc" },
// { 0x0A7D, "ShenZhen Juhor Precision Tech Co Ltd" },
// { 0x0A7E, "Shenzhen Reeinno Technology Co Ltd" },
// { 0x0B01, "ABIT Electronics (Shenzhen) Co Ltd" },
// { 0x0B02, "Semidrive" },
// { 0x0B03, "MyTek Electronics Corp" },
// { 0x0B04, "Wxilicon Technology Co Ltd" },
// { 0x0B05, "Shenzhen Meixin Electronics Ltd" },
// { 0x0B06, "Ghost Wolf" },
// { 0x0B07, "LiSion Technologies Inc" },
// { 0x0B08, "Power Active Co Ltd" },
// { 0x0B09, "Pioneer High Fidelity Taiwan Co. Ltd" },
// { 0x0B0A, "LuoSilk" },
// { 0x0B0B, "Shenzhen Chuangshifeida Technology" },
// { 0x0B0C, "Black Sesame Technologies Inc" },
// { 0x0B0D, "Jiangsu Xinsheng Intelligent Technology" },
// { 0x0B0E, "MLOONG" },
// { 0x0B0F, "Quadratica LLC" },
// { 0x0B10, "Anpec Electronics" },
// { 0x0B11, "Xi'an Morebeck Semiconductor Tech Co" },
{ 0x0B12, "Kingbank" },
// { 0x0B13, "ITRenew Inc" },
// { 0x0B14, "Shenzhen Eaget Innovation Tech Ltd" },
// { 0x0B15, "Jazer" },
// { 0x0B16, "Xiamen Semiconductor Investment Group" },
// { 0x0B17, "Guangzhou Longdao Network Tech Co" },
// { 0x0B18, "Shenzhen Futian SEC Electronic Market" },
{ 0x0B19, "Allegro" },
// { 0x0B1A, "Hunan RunCore Innovation Technology" },
// { 0x0B1B, "C-Corsa Technology" },
// { 0x0B1C, "Zhuhai Chuangfeixin Technology Co Ltd" },
// { 0x0B1D, "Beijing InnoMem Technologies Co Ltd" },
// { 0x0B1E, "YooTin" },
// { 0x0B1F, "Shenzhen Pengxiong Technology Co Ltd" },
// { 0x0B20, "Dongguan Yingbang Commercial Trading Co" },
// { 0x0B21, "Shenzhen Ronisys Electronics Co Ltd" },
// { 0x0B22, "Hongkong Xinlan Guangke Co Ltd" },
// { 0x0B23, "Apex Microelectronics Co Ltd" },
// { 0x0B24, "Beijing Hongda Jinming Technology Co Ltd" },
// { 0x0B25, "Ling Rui Technology (Shenzhen) Co Ltd" },
// { 0x0B26, "Hongkong Hyunion Electronics Co Ltd" },
// { 0x0B27, "Starsystems Inc" },
// { 0x0B28, "Shenzhen Yingjiaxun Industrial Co Ltd" },
// { 0x0B29, "Dongguan Crown Code Electronic Commerce" },
// { 0x0B2A, "Monolithic Power Systems Inc" },
// { 0x0B2B, "WuHan SenNaiBo E-Commerce Co Ltd" },
// { 0x0B2C, "Hangzhou Hikstorage Technology Co" },
// { 0x0B2D, "Shenzhen Goodix Technology Co Ltd" },
// { 0x0B2E, "Aigo Electronic Technology Co Ltd" },
// { 0x0B2F, "Hefei Konsemi Storage Technology Co Ltd" },
// { 0x0B30, "Cactus Technologies Limited" },
// { 0x0B31, "DSIN" },
// { 0x0B32, "Blu Wireless Technology" },
// { 0x0B33, "Nanjing UCUN Technology Inc" },
// { 0x0B34, "Acacia Communications" },
// { 0x0B35, "Beijinjinshengyihe Technology Co Ltd" },
// { 0x0B36, "Zyzyx" },
// { 0x0B37, "T-HEAD Semiconductor Co Ltd" },
// { 0x0B38, "Shenzhen Hystou Technology Co Ltd" },
// { 0x0B39, "Syzexion" },
// { 0x0B3A, "Kembona" },
// { 0x0B3B, "Qingdao Thunderobot Technology Co Ltd" },
// { 0x0B3C, "Morse Micro" },
// { 0x0B3D, "Shenzhen Envida Technology Co Ltd" },
// { 0x0B3E, "UDStore Solution Limited" },
// { 0x0B3F, "Shunlie" },
// { 0x0B40, "Shenzhen Xin Hong Rui Tech Ltd" },
// { 0x0B41, "Shenzhen Yze Technology Co Ltd" },
// { 0x0B42, "Shenzhen Huang Pu He Xin Technology" },
// { 0x0B43, "Xiamen Pengpai Microelectronics Co Ltd" },
// { 0x0B44, "JISHUN" },
// { 0x0B45, "Shenzhen WODPOSIT Technology Co" },
// { 0x0B46, "Unistar" },
// { 0x0B47, "UNICORE Electronic (Suzhou) Co Ltd" },
// { 0x0B48, "Axonne Inc" },
// { 0x0B49, "Shenzhen SOVERECA Technology Co" },
// { 0x0B4A, "Dire Wolf" },
// { 0x0B4B, "Whampoa Core Technology Co Ltd" },
// { 0x0B4C, "CSI Halbleiter GmbH" },
// { 0x0B4D, "ONE Semiconductor" },
// { 0x0B4E, "SimpleMachines Inc" },
// { 0x0B4F, "Shenzhen Chengyi Qingdian Electronic" },
// { 0x0B50, "Shenzhen Xinlianxin Network Technology" },
// { 0x0B51, "Vayyar Imaging Ltd" },
// { 0x0B52, "Paisen Network Technology Co Ltd" },
// { 0x0B53, "Shenzhen Fengwensi Technology Co Ltd" },
// { 0x0B54, "Caplink Technology Limited" },
// { 0x0B55, "JJT Solution Co Ltd" },
// { 0x0B56, "HOSIN Global Electronics Co Ltd" },
// { 0x0B57, "Shenzhen KingDisk Century Technology" },
{ 0x0B58, "SOYO" },
// { 0x0B59, "DIT Technology Co Ltd" },
// { 0x0B5A, "iFound" },
// { 0x0B5B, "Aril Computer Company" },
{ 0x0B5C, "ASUS" },
// { 0x0B5D, "Shenzhen Ruiyingtong Technology Co" },
// { 0x0B5E, "HANA Micron" },
// { 0x0B5F, "RANSOR" },
// { 0x0B60, "Axiado Corporation" },
// { 0x0B61, "Tesla Corporation" },
// { 0x0B62, "Pingtouge (Shanghai) Semiconductor Co" },
// { 0x0B63, "S3Plus Technologies SA" },
// { 0x0B64, "Integrated Silicon Solution Israel Ltd" },
// { 0x0B65, "GreenWaves Technologies" },
// { 0x0B66, "NUVIA Inc" },
// { 0x0B67, "Guangzhou Shuvrwine Technology Co" },
// { 0x0B68, "Shenzhen Hangshun Chip Technology" },
// { 0x0B69, "Chengboliwei Electronic Business" },
// { 0x0B6A, "Kowin Memory Technology Co Ltd" },
// { 0x0B6B, "Euronet Technology Inc" },
// { 0x0B6C, "SCY" },
// { 0x0B6D, "Shenzhen Xinhongyusheng Electrical" },
// { 0x0B6E, "PICOCOM" },
// { 0x0B6F, "Shenzhen Toooogo Memory Technology" },
// { 0x0B70, "VLSI Solution" },
// { 0x0B71, "Costar Electronics Inc" },
// { 0x0B72, "Shenzhen Huatop Technology Co Ltd" },
// { 0x0B73, "Inspur Electronic Information Industry" },
// { 0x0B74, "Shenzhen Boyuan Computer Technology" },
// { 0x0B75, "Beijing Welldisk Electronics Co Ltd" },
// { 0x0B76, "Suzhou EP Semicon Co Ltd" },
// { 0x0B77, "Zhejiang Dahua Memory Technology" },
// { 0x0B78, "Virtu Financial" },
// { 0x0B79, "Datotek International Co Ltd" },
// { 0x0B7A, "Telecom and Microelectronics Industries" },
// { 0x0B7B, "Echow Technology Ltd" },
// { 0x0B7C, "APEX-INFO" },
// { 0x0B7D, "Yingpark" },
// { 0x0B7E, "Shenzhen Bigway Tech Co Ltd" },
// { 0x0C01, "Beijing Haawking Technology Co Ltd" },
// { 0x0C02, "Open HW Group" },
// { 0x0C03, "JHICC" },
// { 0x0C04, "ncoder AG" },
// { 0x0C05, "ThinkTech Information Technology Co" },
// { 0x0C06, "Shenzhen Chixingzhe Technology Co Ltd" },
// { 0x0C07, "Biao Ram Technology Co Ltd" },
// { 0x0C08, "Shenzhen Kaizhuoyue Electronics Co Ltd" },
// { 0x0C09, "Shenzhen YC Storage Technology Co Ltd" },
// { 0x0C0A, "Shenzhen Chixingzhe Technology Co" },
// { 0x0C0B, "Wink Semiconductor (Shenzhen) Co Ltd" },
// { 0x0C0C, "AISTOR" },
// { 0x0C0D, "Palma Ceia SemiDesign" },
// { 0x0C0E, "EM Microelectronic-Marin SA" },
// { 0x0C0F, "Shenzhen Monarch Memory Technology" },
{ 0x0C10, "Reliance Memory" },
// { 0x0C11, "Jesis" },
{ 0x0C12, "Espressif" },
// { 0x0C13, "Shenzhen Sati Smart Technology Co Ltd" },
// { 0x0C14, "NeuMem Co Ltd" },
// { 0x0C15, "Lifelong" },
// { 0x0C16, "Beijing Oitech Technology Co Ltd" },
{ 0x0C17, "LDLC" },
// { 0x0C18, "Semidynamics Technology Services SLU" },
// { 0x0C19, "swordbill" },
// { 0x0C1A, "YIREN" },
// { 0x0C1B, "Shenzhen Yinxiang Technology Co Ltd" },
// { 0x0C1C, "PoweV Electronic Technology Co Ltd" },
// { 0x0C1D, "LEORICE" },
// { 0x0C1E, "Waymo LLC" },
// { 0x0C1F, "Ventana Micro Systems" },
// { 0x0C20, "Hefei Guangxin Microelectronics Co Ltd" },
// { 0x0C21, "Shenzhen Sooner Industrial Co Ltd" },
// { 0x0C22, "Horizon Robotics" },
// { 0x0C23, "Tangem AG" },
// { 0x0C24, "FuturePath Technology (Shenzhen) Co" },
// { 0x0C25, "RC Module" },
{ 0x0C26, "Timetec" },
// { 0x0C27, "ICMAX Technologies Co Limited" },
// { 0x0C28, "Lynxi Technologies Ltd Co" },
// { 0x0C29, "Guangzhou Taisupanke Computer Equipment" },
// { 0x0C2A, "Ceremorphic Inc" },
// { 0x0C2B, "Biwin Storage Technology Co Ltd" },
// { 0x0C2C, "Beijing ESWIN Computing Technology" },
// { 0x0C2D, "WeForce Co Ltd" },
// { 0x0C2E, "Shenzhen Fanxiang Information Technology" },
// { 0x0C2F, "Unisoc" },
// { 0x0C30, "YingChu" },
// { 0x0C31, "GUANCUN" },
// { 0x0C32, "IPASON" },
// { 0x0C33, "Ayar Labs" },
{ 0x0C34, "Amazon" },
// { 0x0C35, "Shenzhen Xinxinshun Technology Co" },
// { 0x0C36, "Galois Inc" },
// { 0x0C37, "Ubilite Inc" },
// { 0x0C38, "Shenzhen Quanxing Technology Co Ltd" },
// { 0x0C39, "Group RZX Technology LTDA" },
// { 0x0C3A, "Yottac Technology (XI?AN) Cooperation" },
// { 0x0C3B, "Shenzhen RuiRen Technology Co Ltd" },
// { 0x0C3C, "Group Star Technology Co Ltd" },
// { 0x0C3D, "RWA (Hong Kong) Ltd" },
// { 0x0C3E, "Genesys Logic Inc" },
// { 0x0C3F, "T3 Robotics Inc." },
// { 0x0C40, "Biostar Microtech International Corp" },
// { 0x0C41, "Shenzhen SXmicro Technology Co Ltd" },
// { 0x0C42, "Shanghai Yili Computer Technology Co" },
// { 0x0C43, "Zhixin Semicoducotor Co Ltd" },
// { 0x0C44, "uFound" },
// { 0x0C45, "Aigo Data Security Technology Co. Ltd" },
// { 0x0C46, ".GXore Technologies" },
// { 0x0C47, "Shenzhen Pradeon Intelligent Technology" },
// { 0x0C48, "Power LSI" },
// { 0x0C49, "PRIME" },
// { 0x0C4A, "Shenzhen Juyang Innovative Technology" },
// { 0x0C4B, "CERVO" },
// { 0x0C4C, "SiEngine Technology Co., Ltd." },
// { 0x0C4D, "Beijing Unigroup Tsingteng MicroSystem" },
// { 0x0C4E, "Brainsao GmbH" },
// { 0x0C4F, "Credo Technology Group Ltd" },
// { 0x0C50, "Shanghai Biren Technology Co Ltd" },
// { 0x0C51, "Nucleu Semiconductor" },
// { 0x0C52, "Shenzhen Guangshuo Electronics Co Ltd" },
// { 0x0C53, "ZhongsihangTechnology Co Ltd" },
// { 0x0C54, "Suzhou Mainshine Electronic Co Ltd." },
// { 0x0C55, "Guangzhou Riss Electronic Technology" },
// { 0x0C56, "Shenzhen Cloud Security Storage Co" },
{ 0x0C57, "ROG" },
// { 0x0C58, "Perceive" },
// { 0x0C59, "e-peas" },
// { 0x0C5A, "Fraunhofer IPMS" },
// { 0x0C5B, "Shenzhen Daxinlang Electronic Tech Co" },
// { 0x0C5C, "Abacus Peripherals Private Limited" },
{ 0x0C5D, "OLOy" },
// { 0x0C5E, "Wuhan P&S Semiconductor Co Ltd" },
// { 0x0C5F, "Sitrus Technology" },
// { 0x0C60, "AnHui Conner Storage Co Ltd" },
// { 0x0C61, "Rochester Electronics" },
// { 0x0C62, "Wuxi Petabyte Technologies Co Ltd" },
{ 0x0C63, "Star Memory" },
// { 0x0C64, "Agile Memory Technology Co Ltd" },
// { 0x0C65, "MEJEC" },
// { 0x0C66, "Rockchip Electronics Co Ltd" },
// { 0x0C67, "Dongguan Guanma e-commerce Co Ltd" },
// { 0x0C68, "Rayson Hi-Tech (SZ) Limited" },
// { 0x0C69, "MINRES Technologies GmbH" },
// { 0x0C6A, "Himax Technologies Inc" },
// { 0x0C6B, "Shenzhen Cwinner Technology Co Ltd" },
// { 0x0C6C, "Tecmiyo" },
// { 0x0C6D, "Shenzhen Suhuicun Technology Co Ltd" },
// { 0x0C6E, "Vickter Electronics Co. Ltd." },
// { 0x0C6F, "lowRISC" },
// { 0x0C70, "EXEGate FZE" },
// { 0x0C71, "Shenzhen 9 Chapter Technologies Co" },
// { 0x0C72, "Addlink" },
// { 0x0C73, "Starsway" },
// { 0x0C74, "Pensando Systems Inc." },
// { 0x0C75, "AirDisk" },
// { 0x0C76, "Shenzhen Speedmobile Technology Co" },
// { 0x0C77, "PEZY Computing" },
// { 0x0C78, "Extreme Engineering Solutions Inc" },
// { 0x0C79, "Shangxin Technology Co Ltd" },
// { 0x0C7A, "Shanghai Zhaoxin Semiconductor Co" },
// { 0x0C7B, "Xsight Labs Ltd" },
// { 0x0C7C, "Hangzhou Hikstorage Technology Co" },
// { 0x0C7D, "Dell Technologies" },
// { 0x0C7E, "Guangdong StarFive Technology Co" },
// { 0x0D01, "TECOTON" },
// { 0x0D02, "Abko Co Ltd" },
// { 0x0D03, "Shenzhen Feisrike Technology Co Ltd" },
// { 0x0D04, "Shenzhen Sunhome Electronics Co Ltd" },
// { 0x0D05, "Global Mixed-mode Technology Inc" },
// { 0x0D06, "Shenzhen Weien Electronics Co. Ltd." },
// { 0x0D07, "Shenzhen Cooyes Technology Co Ltd" },
// { 0x0D08, "Keymos Electronics Co., Limited" },
// { 0x0D09, "E-Rockic Technology Company Limited" },
// { 0x0D0A, "Aerospace Science Memory Shenzhen" },
// { 0x0D0B, "Shenzhen Quanji Technology Co Ltd" },
// { 0x0D0C, "Dukosi" },
// { 0x0D0D, "Maxell Corporation of America" },
// { 0x0D0E, "Shenshen Xinxintao Electronics Co Ltd" },
// { 0x0D0F, "Zhuhai Sanxia Semiconductor Co Ltd" },
// { 0x0D10, "Groq Inc" },
// { 0x0D11, "AstraTek" },
// { 0x0D12, "Shenzhen Xinyuze Technology Co Ltd" },
// { 0x0D13, "All Bit Semiconductor" },
// { 0x0D14, "ACFlow" },
// { 0x0D15, "Shenzhen Sipeed Technology Co Ltd" },
// { 0x0D16, "Linzhi Hong Kong Co Limited" },
// { 0x0D17, "Supreme Wise Limited" },
// { 0x0D18, "Blue Cheetah Analog Design Inc" },
// { 0x0D19, "Hefei Laiku Technology Co Ltd" },
// { 0x0D1A, "Zord" },
// { 0x0D1B, "SBO Hearing A/S" },
// { 0x0D1C, "Regent Sharp International Limited" },
// { 0x0D1D, "Permanent Potential Limited" },
// { 0x0D1E, "Creative World International Limited" },
// { 0x0D1F, "Base Creation International Limited" },
{ 0xFFFF, "Unknown"}
};
|