diff options
author | Yunsup Lee <yunsup@cs.berkeley.edu> | 2011-05-18 14:35:32 -0700 |
---|---|---|
committer | Yunsup Lee <yunsup@cs.berkeley.edu> | 2011-05-18 14:35:32 -0700 |
commit | af726e3d9d91e2ed942175085e5defaa2296fc44 (patch) | |
tree | 7451815723996f79a47c29bd12bcfaba8ef5c167 | |
parent | e091d4f4a892af59e47532078f82a0628c55709e (diff) | |
download | riscv-opcodes-af726e3d9d91e2ed942175085e5defaa2296fc44.zip riscv-opcodes-af726e3d9d91e2ed942175085e5defaa2296fc44.tar.gz riscv-opcodes-af726e3d9d91e2ed942175085e5defaa2296fc44.tar.bz2 |
[opcodes,pk,sim] add more vector traps (for #banks, illegal instructions)
-rwxr-xr-x | parse-opcodes | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parse-opcodes b/parse-opcodes index 4ebc638..5a34318 100755 --- a/parse-opcodes +++ b/parse-opcodes @@ -122,12 +122,12 @@ def make_switch(match,mask): print ' #include "insns/%s.h"' % name2 print ' break;' print ' }' - print ' throw trap_illegal_instruction;' + print ' throw_illegal_instruction;' print ' break;' print ' }' print ' default:' print ' {' - print ' throw trap_illegal_instruction;' + print ' throw_illegal_instruction;' print ' }' print '}' |