further ivt and isr implementation
[cortex-from-scratch] / start.asm
index 294a718..e4ca237 100644 (file)
--- a/start.asm
+++ b/start.asm
@@ -1,4 +1,4 @@
-       .equ STACK_TOP, 0x20000800
+       .equ STACK_TOP, 0x20008000 /* placed at 32kB, TODO: could place at top of SRAM? */
        .text
        .global _start
        .global reset, nmi, hardfault
@@ -35,6 +35,6 @@ stub:
        udiv.w R2, R0, R1 */
 
        .data
-       .word 'x'
+       .word 'x' 
        .end