Minor README tweaks

This commit is contained in:
Jeff Parsons 2014-12-16 14:14:30 -08:00 committed by jeffpar
commit ce4dd8c272
5 changed files with 17 additions and 19 deletions

View file

@ -1,16 +1,15 @@
"Multitasking" MS-DOS 4.00
Multitasking MS-DOS 4.00
---
This simulation demonstrates the first unearthed copy of Microsoft's "multitasking" version of MS-DOS. The
[original images](/disks/pc/dos/microsoft/4.0M/) were released on [jsmachines.net](http://jsmachines.net/)
in March, 2013, and have since been copied to other web sites. This version of MS-DOS was never officially released
in North America. More information is available at [Wikipedia](http://en.wikipedia.org/wiki/Multi-tasking_MS-DOS_4.0)
and [OS/2 Museum](http://www.os2museum.com/wp/?p=1769).
This simulation demonstrates the first unearthed copy of Microsoft's "multitasking" version of MS-DOS.
The [original images](/disks/pc/dos/microsoft/4.0M/) were discovered by the [PCjs Project](/docs/about/) in March 2013.
This version of MS-DOS was never officially released in North America. More information is available at
[Wikipedia](http://en.wikipedia.org/wiki/Multi-tasking_MS-DOS_4.0) and [OS/2 Museum](http://www.os2museum.com/wp/?p=1769).
Note: The designation "4.0M" is not an official version number; it's an internal version number used only to
differentiate these disk images from those of the official MS-DOS 4.00, released in June, 1988.
differentiate these disk images from those of the official MS-DOS 4.00 release in July 1988.
The PCjs machine configuration below boots MS-DOS 4.0M. To access the MS-DOS "Session Manager" after it's booted,
tap the **Alt** key.
[IBM Model 5160](machine.xml "PCjs:ibm5160:::debugger")
[IBM Model 5160](machine.xml "PCjs:ibm5160:::debugger")

View file

@ -22,7 +22,7 @@ Here you'll find sample Machine Configurations for all the IBM PC models that PC
* [IBM PC XT, CGA, 256K, Windows 1.01, Debugger](/devices/pc/machine/5160/cga/256kb/win101/debugger/)
* [IBM PC XT, CGA, 640K, 10Mb Drive](/devices/pc/machine/5160/cga/640kb/)
* [IBM PC XT, CGA, 640K, 10Mb Drive, Debugger](/devices/pc/machine/5160/cga/640kb/debugger/)
* [IBM PC XT, CGA, 640K, "Multitasking" MS-DOS 4.00](/devices/pc/machine/5160/cga/640kb/dos400m/)
* [IBM PC XT, CGA, 640K, Multitasking MS-DOS 4.00](/devices/pc/machine/5160/cga/640kb/dos400m/)
* [IBM PC XT, CGA "Server Array" Demo](/devices/pc/machine/5160/cga/256kb/array/)
* [IBM PC XT, EGA, 256K, 10Mb Drive, Debugger](/devices/pc/machine/5160/ega/256kb/debugger/)
* [IBM PC XT, EGA, 640K, 10Mb Drive, Debugger](/devices/pc/machine/5160/ega/640kb/debugger/)

View file

@ -1,14 +1,14 @@
"Multitasking" MS-DOS 4.00
Multitasking MS-DOS 4.00
---
This was first unearthed copy of Microsoft's "multitasking" version of MS-DOS. It's since been copied
to other web sites, but these are the original images, released on [jsmachines.net](http://jsmachines.net/)
in March, 2013. This version of MS-DOS was never officially released in North America. More information
is available at [Wikipedia](http://en.wikipedia.org/wiki/Multi-tasking_MS-DOS_4.0) and
These disk images contain the first unearthed copy of Microsoft's "multitasking" version of MS-DOS.
They were were discovered by the [PCjs Project](/docs/about/) in March 2013.
This version of MS-DOS was never officially released in North America. More information is available at
[Wikipedia](http://en.wikipedia.org/wiki/Multi-tasking_MS-DOS_4.0) and
[OS/2 Museum](http://www.os2museum.com/wp/?p=1769).
Note: The designation "4.0M" is not an official version number; it's an internal version number used only to
differentiate these disk images from those of the official MS-DOS 4.00, released in June, 1988.
differentiate these disk images from those of the official MS-DOS 4.00 release in July 1988.
The [IBM Model 5160](/devices/pc/machine/) machine configuration below boots MS-DOS 4.0M. To access the MS-DOS
"Session Manager" after it's booted, tap the **Alt** key.

View file

@ -1,4 +1,4 @@
About JavaScript Machines
About JavaScript Machines and the PCjs Project
---
The JavaScript Machines Project (originally at [jsmachines.net](http://jsmachines.net/)) is a collection of computer

View file

@ -648,10 +648,9 @@ Component.prototype = {
return function printPanel(s, type) {
s = (type !== undefined? (type + ": ") : "") + (s || "");
/*
* In all but MAXDEBUG builds, prevent the <textarea> from getting too large;
* otherwise, printing becomes slower and slower.
* Prevent the <textarea> from getting too large; otherwise, printing becomes slower and slower.
*/
if (!MAXDEBUG) {
if (COMPILED) {
if (control.value.length > 8192) {
control.value = control.value.substr(control.value.length - 4096);
}