Tool/software:
Here's my initialization code:
SysTickIntRegister(SysTickISR);
SysTickPeriodSet(80000000/100); // Interrupt every 10ms. (convert nS to mS), keep (system running at 80MHz)
SysTickIntEnable(); // in sync with TICK_TIME_MS in tick.h
SysTickEnable();
IntMasterEnable(); // Master Enable Interrupts.
SysTickISR() never gets called.
Thanks,
Doug