#include <xc.h> /* configuration settings not shown */ /* OSC configured for SYSCLK=200 MHz */ int main(void) { // System Initialization // Prefetch-cache: Enable prefetch for PFM (any PFM instructions or data) PRECONbits.PREFEN = 3; // Flash PM Wait States: MZ Flash runs at 2 wait states @ 200 MHz PRECONbits.PFMWS = 2; // Main Application while(1); }