cpu/picorv32: IRQ vector needs to be moved to 16 bytes after the RESET vector.

This commit is contained in:
William D. Jones 2018-11-01 02:23:01 -04:00
parent 77389d27b5
commit f32121e0e1
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class PicoRV32(Module):
"p_MASKED_IRQ" : 0x00000000,
"p_LATCHED_IRQ" : 0xffffffff,
"p_PROGADDR_RESET" : progaddr_reset,
"p_PROGADDR_IRQ" : 0x00000010,
"p_PROGADDR_IRQ" : progaddr_reset + 0x00000010,
"p_STACKADDR" : 0xffffffff
}