|
/*#define USE_TI89*/
#define RETURN_VALUE
#define OPTIMIZE_ROM_CALLS
#define ENABLE_ERROR_RETURN
/*#define MIN_AMS 202*/
#include <stdio.h>
#include <tigcclib.h>
void _main(void)
{
ESI argptr = top_estack;
float x=GetFloatArg (argptr);
float y=GetFloatArg (argptr);
const char *str=GetStrnArg (argptr);
while (GetArgType (top_estack) != END_TAG) // 清除多余的参数
top_estack = next_expression_index (top_estack);
top_estack--;
FontSetSys(F_8x10);
printf_xy(x,y,"%s",str);
return;
}
将ti 89钛和谐后,希望用ti basic调用此程序,编译通过,basic程序也没问题,可就是不显示字符串,不知道问题出在哪了 |
|