From 5ddec097b858aafe783eb3aff551d00e9c8c8a37 Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Mon, 17 Jan 2011 01:13:50 -0800 Subject: [PATCH] [opcodes, pk, sim, xcc] removed nor, normalized macros to addi --- riscv/execute.h | 5 ----- riscv/insns/nor.h | 1 - 2 files changed, 6 deletions(-) delete mode 100644 riscv/insns/nor.h 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); -- 2.30.2