From 40998b44795970f2921819c79bdf180a19fa4613 Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Wed, 4 Aug 2010 17:04:24 -0700 Subject: [xcc,pk,sim] Added first part of FP support In particular, FP loads, stores, and moves now work. --- riscv/trap.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'riscv/trap.h') diff --git a/riscv/trap.h b/riscv/trap.h index 026cc76..d4400ea 100644 --- a/riscv/trap.h +++ b/riscv/trap.h @@ -4,12 +4,20 @@ #define TRAP_LIST \ 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(reserved1), \ + DECLARE_TRAP(reserved2), \ + DECLARE_TRAP(reserved3), \ + DECLARE_TRAP(reserved4), \ + DECLARE_TRAP(reserved5), \ + DECLARE_TRAP(reserved6), \ DECLARE_TRAP(int0), \ DECLARE_TRAP(int1), \ DECLARE_TRAP(int2), \ -- cgit v1.1