1)SwitchMatrix SwitchMatrix_Init() was generated by NXP Switch Matrix Tool 2)RawSerial class To make the code size smaller RawSerial class is in the latest mbed library(lpc812)

Dependencies:   mbed

lpc810.s

Committer:
maro
Date:
2014-02-28
Revision:
0:e5f3c8836d1c

File content as of revision 0:e5f3c8836d1c:

;patch for lpc810
;
                PRESERVE8
                THUMB

                AREA    |.text|, CODE, READONLY

Reset_Handler   PROC
                EXPORT  Reset_Handler
                IMPORT  SystemInit
                IMPORT  __main
                LDR     R0, =0x10000400
                MOV     SP,R0
                LDR     R0, =SystemInit
                BLX     R0
                LDR     R0, =__main+4
                BX      R0
                ENDP

                ALIGN

                END