Difference between revisions of "Simulator"

From Computer History Wiki
Jump to: navigation, search
m (typo)
(Note confusion with emulator)
Line 1: Line 1:
A '''simulator''' is a program which emulates a particular kind of device, often a computer. For the latter, it reads a [[file]] of [[object code]], and processes it to emulate what an actual computer of that type would have done with that object program.
+
There is some confusion, and no general agreement, about the precise difference between the terms '''simulator''' and [[emulator]]. A simulator is generally a device (often a program) which re-creates the workings of a particular kind of device, often a computer.
  
Simulators often have an emphasis on duplicating exactly the internal operation of the device being simulated, but not so much on the emulating the device's external appearance; e.g. the [[SPICE]] analog circuit simulator merely simulates the operation of the circuits.
+
For the latter, it reads a [[file]] of [[object code]], and processes it to mimic what an actual computer of that type would have done with that object program.
 +
 
 +
Simulators often have an emphasis on duplicating exactly the internal operation of the device being simulated, but not so much on the emulating the device's external 'appearance'; e.g. the [[SPICE]] analog circuit simulator merely simulates the operation of the circuits.
  
 
Simulators have had a variety of uses. Early simulators were sometimes written to allow work on the software for a new computer to begin before the hardware is working. Simulators were also used to evaluate different proposed [[Central Processing Unit|CPU]] designs.
 
Simulators have had a variety of uses. Early simulators were sometimes written to allow work on the software for a new computer to begin before the hardware is working. Simulators were also used to evaluate different proposed [[Central Processing Unit|CPU]] designs.
Line 7: Line 9:
 
More recently, simulators have become popular with people interested in older computers. The hardware for machines such as the [[IBM 7094]] (which ran the [[CTSS]] operating system), the [[Honeywell 6000 series‎‎|Honeywell 6180]] (which ran [[Multics]]) and the [[PDP-10]] (which ran [[Incompatible Timesharing System|ITS]]) is either gone completely, or extremely rare. So, for people who wise to experience one of these historic and influential older systems, a simulator is the answer.
 
More recently, simulators have become popular with people interested in older computers. The hardware for machines such as the [[IBM 7094]] (which ran the [[CTSS]] operating system), the [[Honeywell 6000 series‎‎|Honeywell 6180]] (which ran [[Multics]]) and the [[PDP-10]] (which ran [[Incompatible Timesharing System|ITS]]) is either gone completely, or extremely rare. So, for people who wise to experience one of these historic and influential older systems, a simulator is the answer.
  
Ironically, a simulator running on modern hardware is often considerably faster than the actual machine it is emulating, so fast has been the progress in hardware.
+
Ironically, a simulator running on modern hardware is often considerably faster than the actual machine it is mimicking, so fast has been the progress in hardware.
  
 
One notable simulator is [[SIMH]], which has modules to simulate many different kinds of older computers.
 
One notable simulator is [[SIMH]], which has modules to simulate many different kinds of older computers.
Line 14: Line 16:
  
 
* [[Ersatz-11]]
 
* [[Ersatz-11]]
* [[Emulator]]
+
 
 +
==External links==
 +
 
 +
* [https://stackoverflow.com/questions/1584617/simulator-or-emulator-what-is-the-difference Simulator or Emulator? What is the difference?] - One good discussion of the subject

Revision as of 23:22, 27 October 2017

There is some confusion, and no general agreement, about the precise difference between the terms simulator and emulator. A simulator is generally a device (often a program) which re-creates the workings of a particular kind of device, often a computer.

For the latter, it reads a file of object code, and processes it to mimic what an actual computer of that type would have done with that object program.

Simulators often have an emphasis on duplicating exactly the internal operation of the device being simulated, but not so much on the emulating the device's external 'appearance'; e.g. the SPICE analog circuit simulator merely simulates the operation of the circuits.

Simulators have had a variety of uses. Early simulators were sometimes written to allow work on the software for a new computer to begin before the hardware is working. Simulators were also used to evaluate different proposed CPU designs.

More recently, simulators have become popular with people interested in older computers. The hardware for machines such as the IBM 7094 (which ran the CTSS operating system), the Honeywell 6180 (which ran Multics) and the PDP-10 (which ran ITS) is either gone completely, or extremely rare. So, for people who wise to experience one of these historic and influential older systems, a simulator is the answer.

Ironically, a simulator running on modern hardware is often considerably faster than the actual machine it is mimicking, so fast has been the progress in hardware.

One notable simulator is SIMH, which has modules to simulate many different kinds of older computers.

See also

External links