This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

C++ interface with Cx51 simulator

Is it possible to connect an external C++ code (which does not run on 8051) with a 8051 C code ?
Is it possible to access the memory space of a 8051 C code, running on the simulator, from an external program?

Thanks,

Oren.

Parents
  • Look at Keil's AGDI interface. They have a template API to get you started. You can access memory via the AGDI interface but it will impact your target run time.
    The AGDI allows the user to create a driver DLL to interface with the Keil debugger. I believe the AGDI is written with MS Visual C++. Somewhere I have read that it would be difficult but not impossible to use Borland C++ Builder.
    The AGSI allows the user to create a peripheral for simulation. Brad

Reply
  • Look at Keil's AGDI interface. They have a template API to get you started. You can access memory via the AGDI interface but it will impact your target run time.
    The AGDI allows the user to create a driver DLL to interface with the Keil debugger. I believe the AGDI is written with MS Visual C++. Somewhere I have read that it would be difficult but not impossible to use Borland C++ Builder.
    The AGSI allows the user to create a peripheral for simulation. Brad

Children