Minor fix to comments

This commit is contained in:
William Miceli
2021-05-31 15:48:27 -04:00
parent d18a1582c6
commit ca5c5a5ae9
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ int main(void) {
P8OUT &= ~LEDY0; // Initially set LEDY0 to High
P8OUT |= LEDY1; // Initially set LEDY1 to Low
_EINT(); //enable global interrupts
_EINT(); // Enable global interrupts
volatile int i;
while(1)

View File

@@ -15,7 +15,7 @@ int main(void) {
P8OUT |= LEDG; // Turn on permanently the green LED
P8OUT &= ~(LEDY0 | LEDY1); // Initially set both yellow LEDs to Low
_EINT(); //enable global interrupts
_EINT(); // Enable global interrupts
volatile int i;
while(1)