Had needed an EPROM emulator
Had needed an EPROM emulator
Hi.
I had needed a EPROM emulator instead of using a burner and move chips back and forth all the time. I have googled a little but it seems like there are no one that makes any anymore (everything I found was old and not available). It was also very expensive. Around $500. Are there any relative cheap ones?
I had needed a EPROM emulator instead of using a burner and move chips back and forth all the time. I have googled a little but it seems like there are no one that makes any anymore (everything I found was old and not available). It was also very expensive. Around $500. Are there any relative cheap ones?
Re: Had needed an EPROM emulator
If you can't get one second hand you will have to build your own. Or you use a completely different approach and use a microcontroller to load the ROM image into a RAM section that can be write protected. Either you use the blind load method or you use BE. This also allows for higher clock rates. I used the blind load method in my ROMulus viewtopic.php?f=4&t=3458&hilit=blind+load+romulus. Images can be loaded from AVR flash or Xmodem.
Re: Had needed an EPROM emulator
Cheapest, No development approach would be using EEPROMs I think.
You need some headers, a pin compatible EEPROM, a ZIF socket and a EPROM programmer. (Like TL866CS)
1. Wire headers and zif socket's pins
2. Put the headers on the IC socket where normally EPROM would be placed.
3. Program EEPROM
4. Place it on the ZIF socket
To change content of the EEPROM just remove it from the ZIF socket and reprogram it and place it again on the ZIF socket.
You need some headers, a pin compatible EEPROM, a ZIF socket and a EPROM programmer. (Like TL866CS)
1. Wire headers and zif socket's pins
2. Put the headers on the IC socket where normally EPROM would be placed.
3. Program EEPROM
4. Place it on the ZIF socket
To change content of the EEPROM just remove it from the ZIF socket and reprogram it and place it again on the ZIF socket.
- GARTHWILSON
- Forum Moderator
- Posts: 8773
- Joined: 30 Aug 2002
- Location: Southern California
- Contact:
Re: Had needed an EPROM emulator
To add to i_r_on's post, I would comment that my (E)EPROM programmer, using the quick programming algorithms, can program an 8KB EPROM just about as fast as you can put it in the ZIF and get it back out. A ROM emulator might take the same couple of seconds to transfer the image. My Needham's EPROM programmer is in a PC card slot, so transfer is not a separate process; although I would like to get a stand-alone programmer too which would not be tied to any particular hardware or software or OS. I used one years ago, a Bytek Writer, which had a keypad which could be used for data entry/editing and for giving it instructions, but could also take all the in from RS-232. I even used my HP handheld computer to control it in the 1980's.
http://WilsonMinesCo.com/ lots of 6502 resources
The "second front page" is http://wilsonminesco.com/links.html .
What's an additional VIA among friends, anyhow?
The "second front page" is http://wilsonminesco.com/links.html .
What's an additional VIA among friends, anyhow?
Re: Had needed an EPROM emulator
i_r_on wrote:
Cheapest, No development approach would be using EEPROMs I think.
You need some headers, a pin compatible EEPROM, a ZIF socket and a EPROM programmer. (Like TL866CS)
1. Wire headers and zif socket's pins
2. Put the headers on the IC socket where normally EPROM would be placed.
3. Program EEPROM
4. Place it on the ZIF socket
To change content of the EEPROM just remove it from the ZIF socket and reprogram it and place it again on the ZIF socket.
You need some headers, a pin compatible EEPROM, a ZIF socket and a EPROM programmer. (Like TL866CS)
1. Wire headers and zif socket's pins
2. Put the headers on the IC socket where normally EPROM would be placed.
3. Program EEPROM
4. Place it on the ZIF socket
To change content of the EEPROM just remove it from the ZIF socket and reprogram it and place it again on the ZIF socket.
- jac_goudsmit
- Posts: 229
- Joined: 23 Jun 2011
- Location: Rancho Cucamonga, California
- Contact:
Re: Had needed an EPROM emulator
zamuel_a wrote:
Hi.
I had needed a EPROM emulator instead of using a burner and move chips back and forth all the time. I have googled a little but it seems like there are no one that makes any anymore (everything I found was old and not available). It was also very expensive. Around $500. Are there any relative cheap ones?
I had needed a EPROM emulator instead of using a burner and move chips back and forth all the time. I have googled a little but it seems like there are no one that makes any anymore (everything I found was old and not available). It was also very expensive. Around $500. Are there any relative cheap ones?
===Jac
Re: Had needed an EPROM emulator
jac_goudsmit wrote:
zamuel_a wrote:
Re: Had needed an EPROM emulator
Could you use a battery backed, dual port ram, with one "side" configured for the programmer, the other with a flying lead with a header for the board ??
Re: Had needed an EPROM emulator
I don't think there are any dual port memories that would work. It should be something that has the same pinout as a 27c64 for example.
- jac_goudsmit
- Posts: 229
- Joined: 23 Jun 2011
- Location: Rancho Cucamonga, California
- Contact:
Re: Had needed an EPROM emulator
zamuel_a wrote:
jac_goudsmit wrote:
zamuel_a wrote:
I'd be happy to help you design a circuit board that can be plugged into a ROM socket, with just a Propeller (and crystal, capacitors and 24LC256 EEPROM), and adapt the software so that it emulates whatever EPROM or ROM you want to replace, up to 32KB. The Propeller is programmed through a serial port (usually via a USB converter) and programming can be done "semi-live" i.e. it can stay plugged into the circuit under test while you program it, but of course during programming it won't emulate, so you have to turn the circuit under test off, or at least reset it while programming. Programming takes a few seconds depending on the size of the ROM.
===Jac
Re: Had needed an EPROM emulator
What clock speed are you using in your system, respectively what is the access time required by the "ROM"? When you have a moderate clock you can just use a cable from the EPROM socket to the ROM emulator. Then your solution does not need to fit into the socket space completely.
- Alamorobotics
- Posts: 54
- Joined: 30 Oct 2015
- Location: Sweden
Re: Had needed an EPROM emulator
Howdy...
There are some really interesting projects with the Propeller.
I recently tried to read the Address and Data bus of my W65C816SXB board with a propeller.
The propeller was not able to read it due to the fact that it runs @ 8MHz and my propeller only had a few cycles to read the data bus.
Seem like it's doable with both read and write at around 1MHz ?
I need to check out this projects in more detail when I have some time...
There are some really interesting projects with the Propeller.
I recently tried to read the Address and Data bus of my W65C816SXB board with a propeller.
The propeller was not able to read it due to the fact that it runs @ 8MHz and my propeller only had a few cycles to read the data bus.
Seem like it's doable with both read and write at around 1MHz ?
I need to check out this projects in more detail when I have some time...
Re: Had needed an EPROM emulator
SoftTec has a great EPROM emulator, but it's LPT driven