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.

Proteus Error while simulating 2732

Status
Not open for further replies.

csr1981

Member level 2
Joined
May 10, 2005
Messages
52
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,288
Location
India
Activity points
1,645
I am getting the error when trying ti simulate 2732 IC in proteus
Please help.
 

Attachments

  • error.gif
    error.gif
    30.4 KB · Views: 128

You must use the Intel HEX file format instead of the simple EPROM content in hex
 

thanks for the reply Zuitsi.
I want to write the data (attached in the file below) in the EEPROM. can you please tell how to do that in the Intel HEX format.
 

Attachments

  • Count - Pattern.pdf
    22 KB · Views: 92

Hi;

"Google is your friend" ...
**broken link removed**
**broken link removed**
BINCVT - S19 & Hex file Converter

But ...
I don't know why do you using an EEPROM to realise the function explained in your PDF.
A short sw routine is enough to do this.
For example (pseudo-code):
Code:
 ;input is the Count  (a byte var, may be 0.....max. 59)   
 ;the result will be in var Outp (a byte or a bit var, may be 0 or 1)
 
IF (Count <= 58) THEN 
    IF (Count is even) THEN Outp = 1 ELSE Outp = 0
ELSE 
   Outp = 1   REMARK when Count = 59
ENDIF

Of course ONLY if you have a uC in your circuit : - )
 
Last edited:

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top