Forum Discussion
Altera_Forum
Honored Contributor
20 years agoSIGTRAP ?
gdb stops with the following message: Signal Stop Print Pass to program Description SIGTRAP Yes Yes No Trace/breakpoint trap info signal SIGTRAP disassembly stops at: ...
Altera_Forum
Honored Contributor
12 years ago- your hardware is broken and is generating spurious interrupts (a
peripheral which deasserts its interrupt output before its interrupt
handler has been executed will cause spurious interrupts). That is what got me. I forgot to loop back the interrupt request bit to hold the irq state until the interrupt service routine could clear it. assign irq = (irq & ~irq_clear) | (irq_trigger);