sample code for LPC810 ToraGi I2C board. you can compile it by mbed compiler.

Dependencies:   mbed

Fork of lpc810_helloworld by Norimasa Okamoto

lpc810.s

Committer:
xshige
Date:
2014-09-09
Revision:
2:3d19f6b24059
Parent:
0:9b94dbd65a21

File content as of revision 2:3d19f6b24059:

;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