DOS

From EDM2
Revision as of 15:25, 31 January 2017 by Ak120 (Talk | contribs)

Jump to: navigation, search

The IBM Personal Computer Disk Operating System or PC-DOS, more commonly known as just DOS, is a fairly rudimentary operating system originally shipped with the IBM PC in 1981, primarily a CP/M clone with some facilities modified for a more "IBM like" behaviour or to conform to IBM naming conventions (config.sys etc.). DOS is also a subsystem of OS/2, running in cohabitation with version 1.x of OS/2 and as a task in version 2 and later. Furthermore DOS is also used as a collective name for a variety of operating systems that offer compatibility with the PC-DOS system to varying degrees.

History

Version 1 was so buggy it was rewritten mostly from scratch by IBM and Microsoft for version 1.1 (and the later but identical MS-DOS 1.25), which is the reason all subsequent DOS releases from Microsoft contain an IBM copyright notice, the manual for DOS was also an internal IBM product and not written by either MicroSoft or SCP. Version 2 bought with it a host of improvements, some of them like the new file handling mechanism inspired by features from Microsoft Xenix and while most software originally written for 1.x did work with 2 and later releases, they did cause a few programs problems.

Porting issues

Since we have a few given facts such as:

  • OS/2 command line was developed with compatibility with DOS in mind
  • OS/2 has support for all known DOS codepages
  • OS/2 has a DOS subsystem that is a full version of DOS v5 built in

It is somewhat apparent that porting to and especially from DOS is as easy as it gets, if you cannot get the tools or the time to make a 32 bit version for OS/2, you can create a DOS program that takes advantage of enhanced OS/2 functions such as copy and paste, printer interface etc., in a worst case scenario you can run the original program under the DOS subsystem. Most plain text mode tools port with little or no changes, primarily you will have to keep note of integer and floating point values since a 32 bit system will respond differently than a 16 bit one, and there are minor API differences, not every last DOS call has a 100% equivalent in OS/2.

Graphics libraries

Problems can happen when you are dealing with applications that call windowing libraries and other GUI or graphic libraries for the CLI, the most common libraries actually got ports to OS/2 but there remain a few reasonably common libs that never gained an OS/2 version and it may be difficult to get hold of some of the others now. If you have the source for the graphic library however you may be in luck since the OS/2 command line actually supports most of the graphic modes that DOS has and therefore porting them is relatively simple or even a straight re-compile.

Date, binary values and arithmetic issues

The only other issue to keep in mind when porting is that old software sometimes has artificial limits built into them or assumptions made that made sense at the time they were written but not today. Installers and other programs that query disk sizes in 16 bit values made sense when disk came in 5 to 30 megabyte sizes, but make no sense now with disk sizes in the terabytes. It is best to either remove such code altogether since old DOS apps are so small they are an of inconsequential size even on a small SSD or flash drive or to change any routine to a "is there enough space for this application" query rather than "how much disk space is left" query.

Dates were also commonly calculated using small integers from a set date (typically 1980-01-01 but varies), this meant that the integer value ran out around 2007, some programs assumed only 2 digits for a year which is OK if you are only calculating something that needs current dates such as a PIM, but not good for historical data, some assumed that the program would run in the 20th century only so if they are run now they think it is 1915, so on and so forth.

Development tools like Clipper and dBase for instance supported four digit years out of the box but programmers writing in those two languages commonly just used the last two of the date field when calculating values, this is not a difficult fix but can get a bit time consuming.

Porting tools

  • Clipper/dBase/xBase: Harbour (Current) - X2C (Discontinued) - XHarbour (Discontinued) - XBase++ (Discontinued) | All are Clipper style compilers, no-one has been making dBase like interpreted products for a while.
  • Basic: Bywater Basic should be able to cope with code intended for early MS Basic versions, but WDBasic also supports much of the same street basic languages and is a better OS/2 citizen.
  • C/C++: Open Watcom is your best choice overall since it has a number of compatible tools but is otherwise reasonably modern, old versions of IBM C Set/2 have some compatibility with older Microsoft C and IBM C/2 toolsets, but overall it is recommended that to use Watcom even if that costs you some extra work.
  • Modula-2: All M2 for OS/2 vendors provided TopSpeed Modula-2 compatibility packages for their products, but in all cases as separate downloads and not as part of the main package.
  • Prolog: Visual Prolog versions up to 5.1 contained the full Turbo Vision system that could be ported to OS/2 command line, the 5.2 package drops this but it is trivial to make the 5.1 version work with 5.2.
  • Pascal: Most OS/2 Pascal vendors offered some sort of Turbo Pascal compatibility, the open source Free Pascal is actually a TP clone.

Products

This lists major DOS operating system products by several companies.

Digital Research (DRI) branch
  • DR DOS
  • Novell DOS
  • Caldera OpenDOS
  • Caldera DR-DOS
  • Lineo DR-DOS
  • DeviceLogics DR-DOS 8.1 (Current)
IBM
Lifeboat Associates
  • SB-86 - Software Bus-86
Microsoft (MS)
PhysTechSoft
  • PTS-DOS
Seattle Computer Products (SCP)
  • 86-DOS
XDOS Family
  • XDOS (1988)
  • NSSDOS (1989)
  • DOS/NT
  • DOSC-C/Free-DOS/FreeDOS (1994)

Operating Systems with DOS Support

As above, only major or notable versions included.

  • IBM OS/2 Standard Edition 1.0, Extended Edition 1.0
  • IBM OS/2 Standard Edition 1.1, Extended Edition 1.1
  • IBM OS/2 Standard Edition 1.2, Extended Edition 1.2
  • IBM OS/2 Standard Edition 1.2, Extended Edition 1.3
  • IBM OS/2 2.0
  • IBM OS/2 2.1
  • IBM OS/2 SMP 2.11
  • IBM OS/2 Warp 3
  • IBM OS/2 Warp Connect
  • IBM OS/2 Warp Server 4
  • IBM OS/2 Warp 4
  • IBM OS/2 Warp Server for e-business
  • IBM WorkSpace on-Demand 1.0
  • IBM WorkSpace on-Demand 2.0
  • Microsoft Windows 95
  • Microsoft Windows 98
  • Microsoft Windows 98 Second Edition
  • Microsoft Windows ME
  • PDOS

DOS Shells

Software that runs on top of DOS and takes over the operation of the machine to varying degrees.

Articles

Memory management

Publications

Books

Links

Authors

See also