Removed redundant include file; formatting and comment fixes

This commit is contained in:
William Miceli
2021-05-14 15:09:10 -04:00
parent c7ae89cbfb
commit 1ce2fbc02b

View File

@@ -15,7 +15,6 @@
#include <msp430x54xa.h>
#include <stdio.h>
#include <stdlib.h>
#include <msp430x54xa.h>
#include <ctype.h>
#include <string.h>
#include <math.h>
@@ -34,7 +33,7 @@ static inline void delay(void)
{
for (jj = 0; jj < 1000; jj++)
{
asm(" nop"); //The space is necessary or else the assember things nop is a label!
asm(" nop"); //The space is necessary or else the assembler thinks "nop" is a label!
}
}
}