Hello! i have the following code but when i debug it it doesn't go to the function print() function ,it is very difficult for me to distinguish what is the error,can anybody help me please!!
#include<msp430f5438.h>
#include"deca_ucode.h"
short uint8;
void print();
void main(void) {
WDTCTL = WDTPW + WDTHOLD;
print();
}
void print()
{
int i=0;
i+=4;
}