SYS/BIOS version: 6.32.5.54
Target: ti.targets.elf.C64P_big_endian
app.cfg:
var BIOS = xdc.useModule('ti.sysbios.BIOS');
/*
* Program.argSize sets the size of the .args section.
* The examples don't use command line args so argSize is set to 0.*/
Program.argSize = 0x0;
/* System stack size (used by ISRs and Swis) */
Program.stack = 0x2000;
Program.sectionsExclude =".*";
I have stripped down my project to the bare minimum, and interrupt number 14 is still being used by SYS/BIOS. Here is the question:
Do you know what SYS/BIOS is using this interrupt number for?
I need to be able to account for it.
Thank you for your help.
Brian