(Gwise) wrote in message news:<. com>...
> Can anyone point me to free tools for the intel 80C188 processor. We
> have a testset that is no longer produced that we would like to
> maintain and add functionality. I'm needing to download the code from
> firmware if at all possible and basically reverse engineer it. Any
> leads on assembler/disassembler Simulators would be appreciated..
Long ago, I wrote both a disassember and a simulator for the 80186 (actually,
I wrote them for the 8086, but the extra instructions for the 80186 were
very easy to add). Both are now freely available, along with their source
code.
The disassembler is CODEGEN, available at
http://www.datapackrat.com/source/codegen.html
It's limited to code that is either:
1) code and data share a single 64K segment
or
2) code and data each have their own 64K segment
so it may or may not be useful for your purpose, but give it a try.
The simulator is VIM, available at
http://www.datapackrat.com/source/vim.html
It does not have limits on the memory models it can handle.
If you have problems with either program, send me some email.
Bill