T32: Updated to recent T32 API.

This commit is contained in:
Martin Hoffmann
2013-03-05 17:29:48 +01:00
parent 4686c27d3d
commit 010137cf54
6 changed files with 772 additions and 426 deletions

View File

@ -52,6 +52,12 @@ namespace fail {
void showDataRegions(void) const { showMemoryRegions(m_data_memory_map); };
void showProgramRegions(void) const { showMemoryRegions(m_program_memory_map); };
/**
* @brief Start real time emulation
*/
void go(void);
void brk(void);
void test(void);
private:
const char* m_hostname; //!< The hostname of the T32 device
const char* m_port; //!< The port to connect as configure in config.t32. Here we use strings, as required by the API