aboutsummaryrefslogtreecommitdiff
path: root/riscv/trap.h
diff options
context:
space:
mode:
authorAndrew Waterman <waterman@s141.Millennium.Berkeley.EDU>2010-09-10 21:02:38 -0700
committerAndrew Waterman <waterman@s141.Millennium.Berkeley.EDU>2010-09-10 21:02:38 -0700
commitb3dac377a11188c1a18f6ddddd2af589f6f6841d (patch)
tree0e821aa4de6dba15a25a625909480ec54c519579 /riscv/trap.h
parent5b9b36def0d5ba6a33f916cc68170234207cae6f (diff)
downloadspike-b3dac377a11188c1a18f6ddddd2af589f6f6841d.zip
spike-b3dac377a11188c1a18f6ddddd2af589f6f6841d.tar.gz
spike-b3dac377a11188c1a18f6ddddd2af589f6f6841d.tar.bz2
[sim, pk] cleaned up exception vectors and FP exc flags
Diffstat (limited to 'riscv/trap.h')
-rw-r--r--riscv/trap.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/riscv/trap.h b/riscv/trap.h
index d4400ea..5ba1183 100644
--- a/riscv/trap.h
+++ b/riscv/trap.h
@@ -2,16 +2,16 @@
#define _RISCV_TRAP_H
#define TRAP_LIST \
+ DECLARE_TRAP(instruction_address_misaligned), \
+ DECLARE_TRAP(instruction_access_fault), \
DECLARE_TRAP(illegal_instruction), \
DECLARE_TRAP(privileged_instruction), \
DECLARE_TRAP(fp_disabled), \
- DECLARE_TRAP(reserved0), \
- DECLARE_TRAP(instruction_address_misaligned), \
- DECLARE_TRAP(data_address_misaligned), \
- DECLARE_TRAP(instruction_access_fault), \
- DECLARE_TRAP(data_access_fault), \
DECLARE_TRAP(syscall), \
DECLARE_TRAP(breakpoint), \
+ DECLARE_TRAP(data_address_misaligned), \
+ DECLARE_TRAP(load_access_fault), \
+ DECLARE_TRAP(store_access_fault), \
DECLARE_TRAP(reserved1), \
DECLARE_TRAP(reserved2), \
DECLARE_TRAP(reserved3), \