rp2040

RP2040 Programming without SDK
Log | Files | Refs

commit aef2583b241f2a369a3ff5cb405341d9be4cf20a
parent d37abb91a203c454d2fff7fee8a0c1634fba38cd
Author: Matsuda Kenji <info@mtkn.jp>
Date:   Sat,  4 Mar 2023 14:55:01 +0900

rename vector table

Diffstat:
Mstart.s | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/start.s b/start.s @@ -1,11 +1,10 @@ .cpu cortex-m0plus .thumb -/* vector table */ .section .vectors, "ax" .align 2 - .global __vectors -__vectors: + .global vectors +vectors: .word 0x20001000 .word reset