aboutsummaryrefslogtreecommitdiff
path: root/riscv
diff options
context:
space:
mode:
authorAndrew Waterman <waterman@s141.Millennium.Berkeley.EDU>2011-01-17 01:13:50 -0800
committerAndrew Waterman <waterman@s141.Millennium.Berkeley.EDU>2011-01-17 01:13:50 -0800
commit5ddec097b858aafe783eb3aff551d00e9c8c8a37 (patch)
treeefd7b939354c7d9f9fc40b717d26a967cdef3230 /riscv
parentdb6af47aa90f9ebfa4603d1b52326600c4cad960 (diff)
downloadspike-5ddec097b858aafe783eb3aff551d00e9c8c8a37.zip
spike-5ddec097b858aafe783eb3aff551d00e9c8c8a37.tar.gz
spike-5ddec097b858aafe783eb3aff551d00e9c8c8a37.tar.bz2
[opcodes, pk, sim, xcc] removed nor, normalized macros to addi
Diffstat (limited to 'riscv')
-rw-r--r--riscv/execute.h5
-rw-r--r--riscv/insns/nor.h1
2 files changed, 0 insertions, 6 deletions
diff --git a/riscv/execute.h b/riscv/execute.h
index a7f5984..ddc7b42 100644
--- a/riscv/execute.h
+++ b/riscv/execute.h
@@ -606,11 +606,6 @@ switch((insn.bits >> 0x0) & 0x7f)
#include "insns/add.h"
break;
}
- if((insn.bits & 0x1ffff) == 0x1c75)
- {
- #include "insns/nor.h"
- break;
- }
if((insn.bits & 0x1ffff) == 0xc75)
{
#include "insns/sltu.h"
diff --git a/riscv/insns/nor.h b/riscv/insns/nor.h
deleted file mode 100644
index 553449f..0000000
--- a/riscv/insns/nor.h
+++ /dev/null
@@ -1 +0,0 @@
-RD = ~(RS1 | RS2);