msp430-rt 0.2.2

Minimal runtime / startup for MSP430 microcontrollers
Documentation
1
2
3
4
5
6
7
  .section .ResetTrampoline, "ax"
  .global ResetTrampoline
  .type ResetTrampoline,%function
ResetTrampoline:
  mov #_stack_start,r1
  br #Reset ; XXX "br Reset" should also work, but doesn't on G2553,
            ; and I don't know why.