From: Andrew Waterman Date: Mon, 17 Jan 2011 09:13:50 +0000 (-0800) Subject: [opcodes, pk, sim, xcc] removed nor, normalized macros to addi X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5ddec097b858aafe783eb3aff551d00e9c8c8a37;p=riscv-isa-sim.git [opcodes, pk, sim, xcc] removed nor, normalized macros to addi --- 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);