-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDATABASE.INI
5148 lines (4851 loc) · 116 KB
/
DATABASE.INI
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
;This file contains fingerprinting information about various computers for
;the TOPBENCH benchmark. Hand-edit at your peril! If you add new systems,
;please consider sending this file to [email protected].
[UID7F5C71D]
MemoryTest=5926
OpcodeTest=3584
VidramTest=3373
MemEATest=4392
3DGameTest=3490
Score=2
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=COPR. IBM 1981,1983 (06/01/83, rev. 86)
BIOSdate=19830601
BIOSCRC16=7F5C
VideoSystem=CGA
VideoAdapter=IBM PCjr
Machine=IBM PCjr
Description=Stock, 128KB RAM. This score is accurate -- it is slower because the first 128KB of PCjr RAM is also display RAM and has an additional wait state.
[UID7481915]
MemoryTest=4445
OpcodeTest=2139
VidramTest=2810
MemEATest=2383
3DGameTest=2261
Score=4
CPU=Intel 80C88
CPUspeed=4 MHz
BIOSinfo=Copyright (c) 1985 Bitstream Inc
BIOSdate=20000101
BIOSCRC16=7481
VideoSystem=CGA
VideoAdapter=CGA
Machine=Data General One Model 2
Description=Data General One Model 2
Submitter=Carlsson (VCF)
[UID85086477]
MemoryTest=4232
OpcodeTest=2103
VidramTest=2236
MemEATest=2375
3DGameTest=2152
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=unknown
BIOSdate=19850305
BIOSCRC16=8508
VideoSystem=CGA
VideoAdapter=Tandy 1000
Machine=Tandy 1000 (no DMA)
Description=128KB Tandy 1000 without DMA
[UID50471A772]
MemoryTest=3887
OpcodeTest=1842
VidramTest=2743
MemEATest=2049
3DGameTest=1924
Score=4
CPU=Intel 8088-2
CPUspeed=4.77 MHz
BIOSinfo=Copyright (C) 1986, by Zenith Data Systems (
BIOSdate=20000101
BIOSCRC16=5047
VideoSystem=EGA
VideoAdapter=Paradise PEGA 1A
Machine=XT Clone (Zenith Z-159 @4.77MHz)
Description=A British Telecom rebadge of a Z-159 in normal mode running DOS 3.20
Submitter=brassicGamer (VCF)
[UID3B854EA]
MemoryTest=3771
OpcodeTest=1744
VidramTest=3121
MemEATest=1930
3DGameTest=1846
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=COPR. IBM 1982 (10/27/82, rev. 0)
BIOSdate=19821027
BIOSCRC16=3B85
VideoSystem=EGA
VideoAdapter=EGA
Machine=IBM PC 5150
Submitter=Great Hierophant
[UID502949C]
MemoryTest=3778
OpcodeTest=1753
VidramTest=3079
MemEATest=1935
3DGameTest=1848
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=COPR. IBM 1986 (05/09/86, rev. 2)
BIOSdate=19820509
BIOSCRC16=5029
VideoSystem=EGA
VideoAdapter=EGA (Mono)
Machine=IBM PC 5150
Submitter=Great Hierophant
[UID907DC3A6E]
MemoryTest=3800
OpcodeTest=1847
VidramTest=2640
MemEATest=2085
3DGameTest=1967
Score=4
CPU=Intel 8086
CPUspeed=4.77 MHz
BIOSinfo=Copyright Matsushita Electric Industrial Co.,Ltd. 1985, 1986
BIOSdate=20000000
BIOSCRC16=907D
VideoSystem=CGA
VideoAdapter=CGA
Machine=Panasonic Business Partner FX-600
Submitter=Dos lives on!! from VCF
[UID8BFF2309C]
MemoryTest=3813
OpcodeTest=1772
VidramTest=2649
MemEATest=1958
3DGameTest=1868
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=unknown
BIOSdate=19871021
BIOSCRC16=8BFF
VideoSystem=CGA
VideoAdapter=ATi Small Wonder V1
Machine=Philips P3105
[UIDB71D1952E]
MemoryTest=3783
OpcodeTest=1769
VidramTest=2685
MemEATest=1953
3DGameTest=1866
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=unknown
BIOSdate=20000101
BIOSCRC16=B71D
VideoSystem=MCGA
VideoAdapter=MCGA
Machine=Epson Apex Model AP1001A-AB with Turbo Mode Off
Description=Epson Apex Model AP1001A-1b with Turbo Mode Off
Submitter=Bill-kun
[UID3B854AB]
MemoryTest=3771
OpcodeTest=1744
VidramTest=2744
MemEATest=1930
3DGameTest=1846
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=COPR. IBM 1982 (10/27/82, rev. 0)
BIOSdate=19821027
BIOSCRC16=3B85
VideoSystem=VGA
VideoAdapter=VGA, unknown Chipset, 256kb Video Memory (BIOS)
Machine=IBM PC 5150
Submitter=Great Hierophant
[UIDCB6B24E4]
MemoryTest=3784
OpcodeTest=1754
VidramTest=2684
MemEATest=1935
3DGameTest=1865
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=1501512 COPR. IBM 1981 (11/08/82, rev. 0)
BIOSdate=19821108
BIOSCRC16=CB6B
VideoSystem=CGA
VideoAdapter=CGA
Machine=IBM PC 5155 (Portable Personal Computer 5155 Model 68)
Description=Stock other than a memory expansion card. Also known as the IBM Luggable PC.
Submitter=Ben in Seattle
[UIDF075F0E6E]
MemoryTest=3773
OpcodeTest=1769
VidramTest=2678
MemEATest=1935
3DGameTest=1851
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=COPR. IBM 1986 (05/09/86, rev. 2)
BIOSdate=19860509
BIOSCRC16=F075
VideoSystem=CGA
VideoAdapter=CGA
Machine=IBM PC/XT
Description=my old IBM/XT. With kind regards from Hamburg Germany Marc-Tell Volkmann [email protected]
Submitter=Marc-Tell Volkmann
[UID9485166A30]
MemoryTest=3774
OpcodeTest=1753
VidramTest=2652
MemEATest=1935
3DGameTest=1851
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=COPR. IBM 1986 (01/10/86, rev. 1)
BIOSdate=19860110
BIOSCRC16=9485
VideoSystem=CGA
VideoAdapter=CGA
Machine=IBM PC/XT (enhanced)
[UID3B8536B]
MemoryTest=3774
OpcodeTest=1753
VidramTest=2648
MemEATest=1935
3DGameTest=1851
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=COPR. IBM 1982 (10/27/82, rev. 0)
BIOSdate=19821027
BIOSCRC16=3B85
VideoSystem=CGA
VideoAdapter=CGA
Machine=IBM PC 5150
Submitter=Great Hierophant
[UIDE3A2D9D]
MemoryTest=3690
OpcodeTest=1748
VidramTest=2628
MemEATest=1933
3DGameTest=1854
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=(C) Copyright COMPAQ Computer Corporation, 1983, All rights reserved.
BIOSdate=20000101
BIOSCRC16=E3A2
VideoSystem=CGA
VideoAdapter=Compaq CGA
Machine=Compaq Portable
Description=Compaq Portable XT
Submitter=resman
[UID790584A]
MemoryTest=3780
OpcodeTest=1758
VidramTest=2489
MemEATest=1940
3DGameTest=1853
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=Copyright (C) 1986, by Zenith Data Systems
BIOSdate=20000101
BIOSCRC16=7905
VideoSystem=CGA
VideoAdapter=CGA
Machine=Zenith data systems ZFA-161-52
Description=Luggable 8088 in the same vein as the IBM 5155 and Compaq Portable. ZFA-161-52 came with two 5.25-inch drives and 320K RAM.
[UID4130B24F]
MemoryTest=3784
OpcodeTest=1754
VidramTest=2489
MemEATest=1935
3DGameTest=1856
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=8088 BIOS (C)1987 AMI, for SUPERWAVE ELECTRONIC CO., LTD. (05/06/87, rev. 0)
BIOSdate=19870506
BIOSCRC16=4130
VideoSystem=MDA
VideoAdapter=Hercules
Machine=Superwave PC/XT clone
[UID8D65DF6B0]
MemoryTest=3655
OpcodeTest=1773
VidramTest=2479
MemEATest=1966
3DGameTest=1889
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=Copyright (c) Award Software Inc. (03/18/89, rev. 2)
BIOSdate=19890318
BIOSCRC16=8D65
VideoSystem=CGA
VideoAdapter=CGA
Machine=Vendex Headstart II (4.77 Mhz)
Description=Vendex Headstart II in 4.77 Mhz Mode
Submitter=Chris Martin
[UID85086DB6]
MemoryTest=3823
OpcodeTest=1833
VidramTest=2148
MemEATest=2028
3DGameTest=1922
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=unknown
BIOSdate=19850305
BIOSCRC16=8508
VideoSystem=CGA
VideoAdapter=Tandy 1000
Machine=Tandy 1000
[UIDB22D9F2]
MemoryTest=3784
OpcodeTest=1754
VidramTest=2342
MemEATest=1935
3DGameTest=1858
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=Copyright (c) 1984,1985,1986 Phoenix Technologies Ltd (11/21/86, rev. 0)
BIOSdate=19861121
BIOSCRC16=B22D
VideoSystem=MDA
VideoAdapter=Internal Hercules and CGA Compatible
Machine=Leading Edge Model D (4.77 MHz)
Description=Switches set to 4.77 MHz and Mono
[UIDD41404]
MemoryTest=3774
OpcodeTest=1744
VidramTest=2345
MemEATest=1935
3DGameTest=1846
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=NCR COPR. 1984 (06/03/85, rev. 0)
BIOSdate=19850603
BIOSCRC16=0D41
VideoSystem=MDA
VideoAdapter=MDA
Machine=NCR PC4
[UID3B85589]
MemoryTest=3771
OpcodeTest=1744
VidramTest=2324
MemEATest=1926
3DGameTest=1846
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=COPR. IBM 1982 (10/27/82, rev. 0)
BIOSdate=19821027
BIOSCRC16=3B85
VideoSystem=MDA
VideoAdapter=MDA
Machine=IBM PC 5150
Submitter=Great Hierophant
[UID9485166518]
MemoryTest=3774
OpcodeTest=1753
VidramTest=2296
MemEATest=1935
3DGameTest=1848
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=COPR. IBM 1986 (01/10/86, rev. 1)
BIOSdate=19860110
BIOSCRC16=9485
VideoSystem=MDA
VideoAdapter=MDA
Machine=IBM PC/XT (enhanced)
[UIDF1994095]
MemoryTest=3783
OpcodeTest=1664
VidramTest=2540
MemEATest=1846
3DGameTest=1768
Score=4
CPU=Intel 8086
CPUspeed=4.77 MHz
BIOSinfo=CRJ (C)Copyright COMPAQ Computer Corp. 1982,83,84,85-All rights reserved. (02/27/87, rev. 0)
BIOSdate=19870227
BIOSCRC16=F199
VideoSystem=CGA
VideoAdapter=CGA
Machine=TeleCOMPAQ
Description=COMPAQ Communications Corp. TeleCOMPAQ
Submitter=Mrs. Argent
[UIDCB6B9DE]
MemoryTest=3778
OpcodeTest=1744
VidramTest=2289
MemEATest=1926
3DGameTest=1851
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=COPR. IBM 1982 (11/08/82, rev. 0)
BIOSdate=19821108
BIOSCRC16=CB6B
VideoSystem=VGA
VideoAdapter=VGA, ATI 18800-1VGAWonderBios : 1.1, 256kb Video Memory (BIOS)
Machine=IBM PC/XT
Description=Standard IBM XT with rev. 0 motherboard and the first BIOS
Submitter=per (VCF)
[UID3B8544F]
MemoryTest=3774
OpcodeTest=1744
VidramTest=2287
MemEATest=1926
3DGameTest=1851
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=COPR. IBM 1982 (10/27/82, rev. 0)
BIOSdate=19821027
BIOSCRC16=3B85
VideoSystem=MDA
VideoAdapter=Hercules
Machine=IBM PC 5150
Submitter=Great Hierophant
[UID95CB9133]
MemoryTest=3655
OpcodeTest=1773
VidramTest=2298
MemEATest=1966
3DGameTest=1889
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=Copyright 1987,1988 Commodore Electronics Ltd. (09/08/88, rev. 0)
BIOSdate=19880908
BIOSCRC16=95CB
VideoSystem=CGA
VideoAdapter=CGA
Machine=Commodore PC10-III
Description=ctrl+alt+s (slow mode)
[email protected] twitter.com/wormetti
[UID907D16B95A]
MemoryTest=3807
OpcodeTest=1881
VidramTest=1707
MemEATest=2087
3DGameTest=1963
Score=4
CPU=Intel 8086
CPUspeed=4.77 MHz
BIOSinfo=Copyright Matsushita Electric Industrial Co.,Ltd. 1984, 1985
BIOSdate=20000101
BIOSCRC16=907D
VideoSystem=CGA
VideoAdapter=CGA
Machine=Panasonic Executive Partner
[UID989015B1]
MemoryTest=3742
OpcodeTest=1770
VidramTest=2082
MemEATest=1962
3DGameTest=1883
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSdate=19860714
BIOSCRC16=9890
VideoSystem=CGA
VideoAdapter=Tandy 1000
Machine=Tandy 1000 SX (4.77MHz)
Submitter=Great Hierophant
[UID44F215818A]
MemoryTest=3579
OpcodeTest=1660
VidramTest=2578
MemEATest=1811
3DGameTest=1773
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=COPR. IBM 1981,1983PS (06/01/83, rev. 0)
BIOSdate=19830601
BIOSCRC16=44F2
VideoSystem=CGA
VideoAdapter=IBM PCjr
Machine=IBM PCjr (memory expansion)
Description=IBM PCjr running in the faster RAM of the memory expansion
Submitter=trixter
[UIDB7F3D52]
MemoryTest=3678
OpcodeTest=1739
VidramTest=2008
MemEATest=1918
3DGameTest=1837
Score=4
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=(C)Award 1986 IBM COMPATIBLE (01/30/87, rev. 0)
BIOSdate=19870130
BIOSCRC16=B7F3
VideoSystem=VGA
VideoAdapter=Realtek RTG3106 SVGA 512kb
Machine=XT clone (TurboXT) (4.77 MHz)
Description=TurboXT Clone board, 4.77 Mhz, Realtek RTG3106 SVGA 512kb
[UID309D1458]
MemoryTest=3573
OpcodeTest=1647
VidramTest=2010
MemEATest=1804
3DGameTest=1766
Score=5
CPU=Intel 8088
CPUspeed=4.77 MHz
BIOSinfo=COPR. IBM 1985 (09/13/85, rev. 0)
BIOSdate=19850913
BIOSCRC16=309D
VideoSystem=CGA
VideoAdapter=CGA
Machine=IBM PC Convertible
Submitter=mbbrutman
[UIDD413A7]
MemoryTest=2478
OpcodeTest=1511
VidramTest=1775
MemEATest=1860
3DGameTest=1394
Score=5
CPU=NEC V20
CPUspeed=4.77 MHz
BIOSinfo=NCR COPR. 1984 (06/03/85, rev. 0)
BIOSdate=19850603
BIOSCRC16=0D41
VideoSystem=MDA
VideoAdapter=MDA
Machine=NCR PC4 (NEC V20)
[UID9890A1D3]
MemoryTest=2785
OpcodeTest=1424
VidramTest=1666
MemEATest=1628
3DGameTest=1459
Score=6
CPU=Intel 8088
CPUspeed=7.16 MHz
BIOSdate=19860714
BIOSCRC16=9890
VideoSystem=CGA
VideoAdapter=Tandy 1000
Machine=Tandy 1000 EX
[UID7F5C3AF]
MemoryTest=2415
OpcodeTest=1463
VidramTest=1877
MemEATest=1777
3DGameTest=1348
Score=6
CPU=NEC V20
CPUspeed=4.77 MHz
BIOSinfo=COPR. IBM 1981,1983 (06/01/83, rev. 71)
BIOSdate=19830601
BIOSCRC16=7F5C
VideoSystem=CGA
VideoAdapter=IBM PCjr
Machine=IBM PCjr (memory expansion, NEC V20)
[UID9890FEE]
MemoryTest=2732
OpcodeTest=1392
VidramTest=1731
MemEATest=1584
3DGameTest=1435
Score=6
CPU=Intel 8088
CPUspeed=7.16 MHz
BIOSdate=19860714
BIOSCRC16=9890
VideoSystem=CGA
VideoAdapter=Tandy 1000
Machine=Tandy 1000 SX
Submitter=Great Hierophant
[UID3B85D3F]
MemoryTest=2481
OpcodeTest=1510
VidramTest=1537
MemEATest=1858
3DGameTest=1396
Score=6
CPU=NEC V20
CPUspeed=4.77 MHz
BIOSinfo=COPR. IBM 1982 (10/27/82, rev. 0)
BIOSdate=19821027
BIOSCRC16=3B85
VideoSystem=VGA
VideoAdapter=VGA, Paradise PVGA1A, 8-Bit-Video, 8-Bit-ROMfixed-sync, 256kb Vi
Machine=IBM PC 5150 (NEC V20)
Submitter=JDT
[UID70044986]
MemoryTest=2458
OpcodeTest=1138
VidramTest=2085
MemEATest=1254
3DGameTest=1216
Score=6
CPU=Intel 8088
CPUspeed=7.16 MHz
BIOSdate=19880730
BIOSCRC16=7004
VideoSystem=VGA
VideoAdapter=VGAChips&Technologies 82c451Rev : 5, 6-Bit DAC, 256kb Video Memo
Machine=Victor Technologies Vicki
Description=Victor Technologies Vicki: 8088 desktop, 640K RAM, 10 MB MFM. It has two 8-bit ISA slots filled with 3rd party VGA + NIC. It runs Victor branded MS-DOS 4.01, hate it or like it...
Submitter=Carlsson (VCF)
[UID95CB4D0B]
MemoryTest=2469
OpcodeTest=1175
VidramTest=1744
MemEATest=1302
3DGameTest=1252
Score=6
CPU=Intel 8088
CPUspeed=7.16 MHz
BIOSinfo=Copyright 1987,1988 Commodore Electronics Ltd. (09/08/88, rev. 0)
BIOSdate=19880908
BIOSCRC16=95CB
VideoSystem=CGA
VideoAdapter=CGA
Machine=Commodore PC10-III
Description=ctrl+alt+t (turbo mode)
[email protected] twitter.com/wormetti
[UIDB22D5FB9]
MemoryTest=2498
OpcodeTest=1185
VidramTest=1660
MemEATest=1298
3DGameTest=1251
Score=6
CPU=Intel 8088
CPUspeed=7.16 MHz
BIOSinfo=Copyright (c) 1984,1985,1986 Phoenix Technologies Ltd (11/21/86, rev. 0)
BIOSdate=19861121
BIOSCRC16=B22D
VideoSystem=MDA
VideoAdapter=Internal Hercules and CGA compatible
Machine=Leading Edge Model D (7.16 MHz)
Description=Switches set to 7.16 MHz and Mono
[UIDB71D1750C]
MemoryTest=2246
OpcodeTest=1073
VidramTest=2229
MemEATest=1190
3DGameTest=1135
Score=6
CPU=Intel 8088
CPUspeed=8 MHz
BIOSinfo=unknown
BIOSdate=20000101
BIOSCRC16=B71D
VideoSystem=MCGA
VideoAdapter=MCGA
Machine=Epson Apex Model AP1001A-AB in Turbo Mode
Description=Epson Apex Model AP1001A-AB in Turbo Mode
Submitter=Bill-kun
[UID50472959A]
MemoryTest=2307
OpcodeTest=1087
VidramTest=2113
MemEATest=1210
3DGameTest=1141
Score=6
CPU=Intel 8088-2
CPUspeed=8 MHz
BIOSinfo=Copyright (C) 1986, by Zenith Data Systems (
BIOSdate=20000101
BIOSCRC16=5047
VideoSystem=EGA
VideoAdapter=Paradise PEGA 1A
Machine=XT Clone (Zenith Z-159 @8MHz)
Description=A British Telecom rebadge of a Z-159 in turbo mode running DOS 3.2
Submitter=brassicGamer (VCF)
[UIDF341B18]
MemoryTest=2024
OpcodeTest=787
VidramTest=2961
MemEATest=1034
3DGameTest=879
Score=6
CPU=Intel 8086
CPUspeed=8 MHz
BIOSinfo=(C) Copyright 1986 Amstrad Consumer Electronics plc
BIOSdate=20000000
BIOSCRC16=0F34
VideoSystem=CGA
VideoAdapter=CGA
Machine=Amstrad PC1512
Submitter=b44ccd21 (VCF)
[UIDF9D031C]
MemoryTest=2033
OpcodeTest=1231
VidramTest=1265
MemEATest=1600
3DGameTest=1142
Score=7
CPU=NEC V20
CPUspeed=7.16 MHz
BIOSinfo=Copyright (C) 1984,1985,1986,1987 (06/01/87, rev. 100)
BIOSdate=19870601
BIOSCRC16=F9D0
VideoSystem=CGA
VideoAdapter=Tandy 1000
Machine=Tandy 1000 HX
Description=640kb memory, ROM 2.00.00, with a 2400 baud dialup modem. Go ahead - laugh - it came with the machine, dangit!!
Submitter=Maverik1978 (VCF)
[UID8BFF234CA]
MemoryTest=2231
OpcodeTest=1056
VidramTest=1578
MemEATest=1161
3DGameTest=1115
Score=7
CPU=Intel 8088
CPUspeed=8 MHz
BIOSinfo=unknown
BIOSdate=19871021
BIOSCRC16=8BFF
VideoSystem=CGA
VideoAdapter=ATi Small Wonder V1
Machine=Philips P3105 (Turbo speed)
[UID44F2897]
MemoryTest=2157
OpcodeTest=1007
VidramTest=1601
MemEATest=1102
3DGameTest=1068
Score=7
CPU=Intel 8088
CPUspeed=8 MHz
BIOSinfo=COPR. IBM 1981,1983 (06/01/83, rev. 0)
BIOSdate=19830601
BIOSCRC16=44F2
VideoSystem=CGA
VideoAdapter=IBM PCjr
Machine=IBM PCjr (memory expansion, 8MHz)
Submitter=hexsane (VCF)
[UID20211103]
MemoryTest=2143
OpcodeTest=812
VidramTest=2054
MemEATest=1127
3DGameTest=797
Score=7
CPU=Intel 8086
CPUspeed=10 MHz
BIOSdate=0
BIOSCRC16=2111
VideoSystem=MDA
VideoAdapter=MDA
Machine=Titan Technologies Accelerator PC
Description=Titan Technologies Accelerator PC card inserted into an unknown XT clone
Submitter=Tube Time
[UIDBC8413E9CE]
MemoryTest=2166
OpcodeTest=863
VidramTest=1754
MemEATest=1112
3DGameTest=963
Score=7
CPU=Intel 8086
CPUspeed=7.16 MHz
BIOSinfo=CRJ (C)Copyright COMPAQ Computer Corp. 1982,83,84,85-All rights reserved. (ÿÿÿÿÿÿÿÿ, rev. 0)
BIOSdate=20000101
BIOSCRC16=BC84
VideoSystem=CGA
VideoAdapter=Compaq CGA
Machine=Compaq Deskpro
Description=Compaq Deskpro
Submitter=resman
[UID1C19147AA9]
MemoryTest=2015
OpcodeTest=792
VidramTest=1976
MemEATest=1020
3DGameTest=878
Score=7
CPU=Intel 8086
CPUspeed=8 MHz
BIOSinfo=(c)Sinclair PC200 1988 Amstrad plc rev. 1.5
BIOSdate=20000101
BIOSCRC16=1C19
VideoSystem=CGA
VideoAdapter=CGA
Machine=Amstrad PC-20
Description=Low profile, Amiga\Atari ST wannabe
Submitter=fatwizard (VCF) [email protected]
[UIDC092BE4F]
MemoryTest=1997
OpcodeTest=791
VidramTest=33660
MemEATest=1011
3DGameTest=882
Score=8
CPU=KR1810VM86M
CPUspeed=8 MHz
BIOSinfo=(C) Maxim Paramonov V2.6 1993 (08/25/93, rev. 2)
BIOSdate=19930825
BIOSCRC16=C092
VideoSystem=VGA
VideoAdapter=VGA, Trident TR8800CS, 768kb Video Memory
Machine=POISK-2 Soviet PC/XT clone
Submitter=Joe Duszynski
[UIDB7F334B]
MemoryTest=1945
OpcodeTest=946
VidramTest=1623
MemEATest=1001
3DGameTest=1074
Score=8
CPU=Intel 8088
CPUspeed=8 MHz
BIOSinfo=(C)Award 1986 IBM COMPATIBLE (01/30/87, rev. 0)
BIOSdate=19870130
BIOSCRC16=B7F3
VideoSystem=VGA
VideoAdapter=Realtek RTG3106 SVGA 512kb
Machine=XT clone (TurboXT)
Description=All benchmarks give less than expected results when this motherboard is in Turbo mode
[UID7214FBD55]
MemoryTest=1843
OpcodeTest=1110
VidramTest=1128
MemEATest=1429
3DGameTest=1030
Score=8
CPU=NEC V20
CPUspeed=7.16 MHz
BIOSinfo=unknown
BIOSdate=19870601
BIOSCRC16=7214
VideoSystem=CGA
VideoAdapter=Tandy 1000
Machine=Tandy 1000 HX V20/NODMA
Description=Tandy 1000 with SRAM memory expansion, no DMA chip
Submitter=Eudimorphodon@VCfed forums
[UIDE7FF88D]
MemoryTest=1607
OpcodeTest=960
VidramTest=1900
MemEATest=1175
3DGameTest=895
Score=8
CPU=NEC V40
CPUspeed=7.16 MHz
BIOSdate=19870820
BIOSCRC16=E7FF
VideoSystem=CGA
VideoAdapter=CGA
Machine=Olivetti PC-1
Description=Olivetti Prodest PC-1
Submitter=Carlsson (VCF)
[UID4E43F18]
MemoryTest=2014
OpcodeTest=781
VidramTest=1711
MemEATest=1022
3DGameTest=874
Score=8
CPU=Intel 8086
CPUspeed=8 MHz
BIOSinfo=(C) Copyright 1988 AMSTRAD plc (08/30/88, rev. 1)
BIOSdate=19880830
BIOSCRC16=4E43
VideoSystem=VGA
VideoAdapter=VGA, Paradise PVGA1A, 8-Bit-Video, 8-Bit-ROMfixed-sync, 256kb Vi
Machine=Amstrad PC2086
Submitter=b44ccd21 (VCF)
[UID8D6513B363]
MemoryTest=1851
OpcodeTest=882
VidramTest=1743
MemEATest=970
3DGameTest=935
Score=8
CPU=Intel 8088
CPUspeed=9.54 MHz
BIOSinfo=Copyright (c) Award Software Inc. (03/18/89, rev. 2)
BIOSdate=19890318
BIOSCRC16=8D65
VideoSystem=CGA
VideoAdapter=CGA
Machine=Vendex Headstart II
Submitter=Chris Martin
[UID95CB1611]
MemoryTest=1851
OpcodeTest=882
VidramTest=1669
MemEATest=970
3DGameTest=926
Score=8
CPU=Intel 8088
CPUspeed=10 MHz
BIOSinfo=Copyright 1987,1988 Commodore Electronics Ltd. (09/08/88, rev. 0)
BIOSdate=19880908
BIOSCRC16=95CB
VideoSystem=VGA
VideoAdapter=VGAOAK OTI037C, 256kb Video Memory (BIOS)
Machine=Commodore PC10-III
Description=ctrl+alt+d (double speed mode)
[email protected] twitter.com/wormetti
[UID907D16BFFB]
MemoryTest=2178
OpcodeTest=866
VidramTest=1109
MemEATest=1134
3DGameTest=969
Score=8
CPU=Intel 8086
CPUspeed=7.16 MHz
BIOSinfo=Copyright Matsushita Electric Industrial Co.,Ltd. 1984, 1985
BIOSdate=20000101
BIOSCRC16=907D
VideoSystem=CGA
VideoAdapter=CGA
Machine=Panasonic Executive Partner (Fast Speed)
[UID86A252875]
MemoryTest=2143
OpcodeTest=838
VidramTest=1049
MemEATest=1115
3DGameTest=925
Score=8
CPU=Intel 8086
CPUspeed=8 MHz
BIOSdate=19860403
BIOSCRC16=86A2
VideoSystem=CGA