This repository has been archived by the owner on Jul 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add support for IAR tools and C startup code (irq vector) - Fix standard CLINT vectored mode (jmp instr) - Fix various trap & emulation bugs (E21 CLIC) - Add vector table mtvec.s (CLINT/CLIC) - Minor changes to zones' code to comply with standard CLINT vector - hexfive-conf @098e5a(2.2.7+), hexfive-kern @3d13f6(2.2.7)
- Loading branch information
Showing
9 changed files
with
221 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* Copyright(C) 2020 Hex Five Security, Inc. - All Rights Reserved */ | ||
|
||
.align 2 | ||
|
||
_mtvec: | ||
|
||
irq0: .word trp_isr | ||
irq1: .word 1f | ||
irq2: .word 1f | ||
irq3: .word msi_isr | ||
irq4: .word 1f | ||
irq5: .word 1f | ||
irq6: .word 1f | ||
irq7: .word tmr_isr | ||
irq8: .word 1f | ||
irq9: .word 1f | ||
irq10: .word 1f | ||
irq11: .word 1f | ||
irq12: .word 1f | ||
irq13: .word 1f | ||
irq14: .word 1f | ||
irq15: .word 1f | ||
irq16: .word 1f | ||
irq17: .word 1f | ||
irq18: .word 1f | ||
irq19: .word 1f | ||
irq20: .word 1f | ||
irq21: .word 1f | ||
irq22: .word 1f | ||
irq23: .word 1f | ||
irq24: .word 1f | ||
irq25: .word gpio_isr | ||
irq26: .word 1f | ||
irq27: .word uart_isr | ||
irq28: .word dma_isr | ||
irq29: .word 1f | ||
irq30: .word 1f | ||
irq31: .word 1f | ||
|
||
.weak trp_isr, msi_isr, tmr_isr, dma_isr, uart_isr, gpio_isr | ||
|
||
trp_isr: | ||
msi_isr: | ||
tmr_isr: | ||
dma_isr: | ||
gpio_isr: | ||
1: j . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.