Neha Patil (Editor)

Bug compatibility

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Computer hardware or software is said to be bug compatible if it exactly replicates even an undesirable feature of a previous version. The phrase is found in the Jargon File.

An aspect of maintaining backward compatibility with an older system is that such systems' client programs often do not only depend on their specified interfaces but also bugs and unintended behaviour. That must also be preserved by the newer replacement. Besides the significantly higher complexity that needs to be maintained during the natural evolution of the code or interface, it can sometimes cause performance or security issues, and the inconsistencies in the behaviour of interfaces can sometimes lead to new bugs in the software using it, creating difficult to resolve multi-directional cross dependencies between various pieces of code.

Examples can be found in MS-DOS/PC DOS; when running on 286 or higher processors, the resident executable loader contains code specially designed to detect and fix certain widespread applications and stub loaders (such as programs linked with older versions of Microsoft's EXEPACK or Rational Systems' 386 DOS extenders) by patching the loaded program image before executing it, or where DOS patches Windows (WINA20.386) Over the course of development, DR-DOS also had to be modified to not only emulate many undocumented peculiarities of MS-DOS/PC DOS, but also actual bugs in the kernel and several drivers to make certain other drivers and applications run on DR-DOS, when they were tested on specific versions of MS-DOS only.

Windows, which has traditionally emulated many old system bugs to allow older low-level programs to run, is another example. As a result, Wine, which makes it possible to run many Windows applications on other platforms, also needs to maintain bug compatibility with Windows.

When Microsoft faded out support for 16-bit code in Windows by no longer including NTVDM in 64-bit editions of the operating system, the executable loader was modified to recognize some specific 16-bit stub launchers/installers and replace them on-the-fly with equivalent code stubs running on 64-bit processors.

During development of its PC compatible, Compaq engineers found that Microsoft Flight Simulator would not run because of what subLOGIC's Bruce Artwick described as "a bug in one of Intel's chips", forcing them to make their computer bug compatible with the IBM PC. Another hardware example is found in the design of the IBM AT A20 address line to emulate the behaviour in older processors.

Microsoft Excel has always had a deliberate leap year bug, which falsely treats February 29, 1900 as an actual date, to ensure backwards compatibility with Lotus 1-2-3.

References

Bug compatibility Wikipedia