Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Emulator and simulator

Status
Not open for further replies.

s.k. sundar

Junior Member level 1
Joined
May 19, 2010
Messages
16
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Location
INDIA
Activity points
1,425
what is actual difference between emulator and simulator,?i read from the internet that emulator is actually an hardware which substitutes the target and can do step by step process to see if there is any error in output whereas a simulator can only perform if there is an error in software just as if substituting in an equation and getting an output.
1) then how DOSBOX can be an emulator if it is still a software?
2) what actually do an incircuit emulator will perform?what is difference between in circuit emulator and just an emulator ?is it same?
 

A simulator is a software that duplicates some processor in almost all the possible ways.
An emulator is a hardware which duplicates the features and functions of a real system, so that it can behave like the actual system.
Usually the emulators and simulators are used for the testing of new architectures and also to give training in some complex systems.
A simulator is a program which runs on the development system (i.e. your PC) and imitates the architecture of the target processor. For example an 8051 simulator will contain simulated registers, RAM and other stuff on your PC screen. You can run your program in this simulator and verify the functionality. You can single step your program, run it upto a certain address, add breakpoints etc.
Some simulators have small separate window which can be used to simulate the serial port as well. Some are able to simulate LCDs, LEDs, Keypads, ADCs etc. Note that it is usually not possible to debug time dependent bugs using a simulator since the simulator does not run your program at full speed, the speed at which your 8051 would run it.

An emulator is a piece of hardware which contains a processor that replaces your target processor. The emulator processor is under the control of development system. This allows you to execute your software at full target speeds but under PC control. Also you can trace the real time events and like a simulator you can single step, run upto a certain address, add breakpoints and so many other nice features.

An emulator is far more expensive than a simultor. But the benifit of accelerated development time easily justifies the cost.
 
simulator is software and an emulator is a hardware component.

but the difference is applicable only in uc systems.

outside , in os level ,many mix the term to specify only the simulator..

e.g.
dosbox --a simulator but called an emulator.
many games call them emulator , but from our point , they are only simulators.

outside uc environment , you cannot apply the terms strictly.
 
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top