Question
SPC5 studio project problems when compiling with -Os
Posted on February 09, 2017 at 17:10
When compiling a SPC5 studio generated demo program with -Os to optimize on size, the resulting code stalls during initialisation. in eirqInit() the loop
while (eirqconf[i].eirqNumber != -1) {
never terminates when the eirqconf[] table has no entries except for the terminator record where irq is set to -1
const eirq_config eirqconf[]={
{-1,0,0,0,NULL} };Is this a known issue, can anyone reproduce?
