Hi,
I am testing the TDU from in volib_C64P_2_1_0_1.
I just used the the test code comes with and compile use CCS 6.12 for target OMAP-L138 and run on EVM board. however, the program always stops at following code:
/****************************************************************************/
/* ABORT - ABNORMAL PROGRAM TERMINATION. CURRENTLY JUST HALTS EXECUTION. */
/****************************************************************************/
_CODE_ACCESS void abort(void)
{
#pragma diag_suppress 1119
#ifndef __VIRTUAL_ENCODING__
/*-------------------------------------------------------------------*/
/* SET C$$EXIT LABEL SO THE DEBUGGER KNOWS WHEN THE C++ PROGRAM HAS */
/* COMPLETED. THIS CAN BE REMOVED IF THE DEBUGGER IS NOT USED. */
/*-------------------------------------------------------------------*/
__asm(" .global C$$EXIT");
__asm("C$$EXIT: nop");
#else
/*-------------------------------------------------------------------*/
/* GENERATE A C$$EXIT OPCODE. */
/*-------------------------------------------------------------------*/
__asm(" .vinstr C$$EXIT");
__asm("C$$EXIT: .encode \"C$$EXIT\", $ENC_OPNDS, 0");
#endif
I just took the code from volib and did not change anything. I am wondering what could be wrong?
thanks in advance!
Ron