[Sdcc-user] SDCC and TI-86

2014-09-10 Thread Hynek Sladky
Hi, does anybody use sdcc to build apps for this calculator? I tried it and but still unsuccessfully. I am looking for example project for sdcc... I started with this page: http://www.cemetech.net/forum/viewtopic.php?t=7087&start=0&postdays=0&postorder=asc&highlight=&sid=f1ba1a8256631e31c9ee57e5

[Sdcc-user] About memset/memcpy on stm8

2014-09-10 Thread Ben Shi
I tried the following c code with command "sdcc a.c -mstm8", #include #include #include void ww(void *p, void *q, void *t) { memcpy(p, q, 10); memset(t, 0, 10); } int main(void) { char w[10]; char ww1[10]; char wq[10]; for (;;)