We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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.
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
Thanks a lot