first commit

This commit is contained in:
2018-03-18 00:56:37 -04:00
commit 06f273ec3f
77 changed files with 3596 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#include <msp430g2553.h>
//#include "asm_mult.asm"
// C comment
int result;
int second_add;
extern int asm_mult(int, int);
void main(void) {
//int result;
WDTCTL = WDTPW | WDTHOLD; // Stop watchdog timer
second_add = 4;
result = asm_mult(2, 3);
//asm(" mov #0x01, R15 ; ");
result++;
return;
}