aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Waterman <waterman@s141.Millennium.Berkeley.EDU>2010-08-04 18:31:04 -0700
committerAndrew Waterman <waterman@s141.Millennium.Berkeley.EDU>2010-08-04 18:31:04 -0700
commit7134cf8d9e4cabcaaa12839733468576402e2eb9 (patch)
treea285c51bcb9e5ac6ea0c144178075b2f6ba08388
parent40998b44795970f2921819c79bdf180a19fa4613 (diff)
downloadriscv-isa-sim-7134cf8d9e4cabcaaa12839733468576402e2eb9.zip
riscv-isa-sim-7134cf8d9e4cabcaaa12839733468576402e2eb9.tar.gz
riscv-isa-sim-7134cf8d9e4cabcaaa12839733468576402e2eb9.tar.bz2
[xcc] Removed ctc1, cfc1 instructions; added fp move test case
-rw-r--r--riscv/execute.h18
-rw-r--r--riscv/insns/cfc1.h0
-rw-r--r--riscv/insns/ctc1.h0
3 files changed, 0 insertions, 18 deletions
diff --git a/riscv/execute.h b/riscv/execute.h
index d5c69d7..8c8ae90 100644
--- a/riscv/execute.h
+++ b/riscv/execute.h
@@ -249,15 +249,6 @@ switch((insn.bits >> 0x19) & 0x7f)
}
#include "insns/unimp.h"
}
- case 0x2:
- {
- if((insn.bits & 0xfe007fff) == 0xd4002000)
- {
- #include "insns/cfc1.h"
- break;
- }
- #include "insns/unimp.h"
- }
case 0x4:
{
if((insn.bits & 0xfe007fff) == 0xd4004000)
@@ -276,15 +267,6 @@ switch((insn.bits >> 0x19) & 0x7f)
}
#include "insns/unimp.h"
}
- case 0x6:
- {
- if((insn.bits & 0xfe007fff) == 0xd4006000)
- {
- #include "insns/ctc1.h"
- break;
- }
- #include "insns/unimp.h"
- }
default:
{
#include "insns/unimp.h"
diff --git a/riscv/insns/cfc1.h b/riscv/insns/cfc1.h
deleted file mode 100644
index e69de29..0000000
--- a/riscv/insns/cfc1.h
+++ /dev/null
diff --git a/riscv/insns/ctc1.h b/riscv/insns/ctc1.h
deleted file mode 100644
index e69de29..0000000
--- a/riscv/insns/ctc1.h
+++ /dev/null