================================================================
                        bigprime.c 使用说明
================================================================

简介：
本程序是一个简易的 CPU 跑分工具，通过计算大素数来测试性能。
既包含了可在 DOS 下直接运行的版本，也附带了源码，可在现代
计算机上自行编译。

代码来源：
http://www.nesssoftware.com/www/bigprime.php

TIME.EXE 说明：
该工具来源于 MKS Toolkit 4.1。
用法类似 *nix 下的 time 命令，用于精确计算程序的运行时间。

编译与运行注意事项：
1. 本文件夹内的程序是使用 Turbo C 编译的，已在 DOSBox 测试通过。
2. 源代码为 K&R C 风格，并非 ANSI/ISO C 标准，现代编译器可能
   需要调整参数才能正确编译。
3. 硬件兼容性：目前无法确定最低支持的 CPU 和配置，理论上应该
   可以在 8086 及其兼容机上运行。

----------------------------------------------------------------
                        以下为原文性能数据摘抄
----------------------------------------------------------------

 * Takes 24.5 hours on IBM PC.
 * Takes 14.25 hours on the Z8001 (segmented).
 * Takes 3.24 hours on the hp 386.
 * Takes about 3 hours on stevesf (i386/20), about 4:15 on belmont.
 * Takes about 32 minutes on jsbach (i486/33).
 * Takes about 3 minutes on acer (PIII/500) 4/4/01.
 * Takes about 49 seconds on eMach1 (Celeron 2.3 GHz) 7/17/03.
 * Takes about 29 seconds on hppav2 (AMD Phenom II 830, 2.80 GHz) 10/03/10.
 * Takes about 40 seconds on macair (Intel Core 2 Duo 1.86 GHz) 8/29/12.
 * Takes about 24 seconds on macair2 (Intel Core I7 2.2 GHz) 6/05/20.
 * Takes about 20 seconds on macair3 (Intel QuadCore Core I5 1.1 GHz) 6/05/20.

Sadly, the earlier entries are undated and don't give the processor clock 
rate. But I can resurrect the dates from the given computer names: the IBM 
PC entry is from 1984, the Z8001 only slightly later, stevesf from 1990, 
jsbach ca. 1992. Later entries are dated and give clock rates.

================================================================
