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,16 @@
; assembly comment
.cdecls C, LIST, "msp430g2553.h" ;include device header file
.text
.global asm_mult
.global second_add
asm_mult:
add R13, R12
add second_add, R12
;mov #1, R14
;mov #2, R15
ret
.end