diff --git a/README.md b/README.md index 98be865..ecf39a9 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,17 @@ # MCPUINFO, Olde Processor Identification Tool -MCPUINFO is a MS-DOS application used to identify pre-Pentium processors and co-processors currently in use. +MCPUINFO is an MS-DOS application used to identify pre-Pentium processors +and co-processors currently in use. Example output: `8086+8087` with a newline. -The list of detected processors and co-processors: +Processors detected: - 8086 - 80286 - 80386 - 80486 + +Co-processors detected: - 8087 - 80287 - 80387 @@ -18,7 +21,8 @@ - `--version`: Show version page and quit - `--ver`: Print version only and quit -For a more sofisticated tool that supports the CPUID instruction, see my [ddcpuid](https://github.com/dd86k/ddcpuid) utility. +For a more sofisticated processor information tool, +see [ddcpuid](https://github.com/dd86k/ddcpuid). ## Compiling diff --git a/mcpuinfo.asm b/mcpuinfo.asm index e907b9c..a54c89e 100644 --- a/mcpuinfo.asm +++ b/mcpuinfo.asm @@ -11,7 +11,7 @@ BITS 16 ; Base is 16-bit code CPU 386 ; Contains mixed 16+32-bit code -ORG 100h ; Origin of CS:0100 +ORG 100h ; Origin of CS:0100 for COM programs %define VERSION '0.1.0' %define NL 13,10