avr: moved bootloader down to 0x0d00.

This commit is contained in:
Martin Preuss
2023-04-18 23:51:40 +02:00
parent 87c1692a7c
commit cf3a90dccc
2 changed files with 3 additions and 3 deletions

View File

@@ -117,7 +117,7 @@
; ---------------------------------------------------------------------------
; Reset and interrupt vectors
; rjmp start ; Reset vector
rjmp 0xe00 ; Reset vector
rjmp 0xd00 ; Reset vector
reti ; EXT_INT0
reti ; PCI0
reti ; PCI1
@@ -147,7 +147,7 @@ firmwareStart: .dw 0 ; will be overwritten when flashing
; main code
.org 0xe00
.org 0xd00
; TODO:

View File

@@ -175,7 +175,7 @@
; Reset and interrupt vectors (will be removed as soon as we can flash data over COM)
rjmp main ; Reset vector
; rjmp 0xe00 ; Reset vector ; use this for flashed system
; rjmp 0xd00 ; Reset vector ; use this for flashed system
reti ; EXT_INT0
rjmp com2IsrPcint0 ; PCI0
reti ; PCI1