aboutsummaryrefslogtreecommitdiff
path: root/tests/regs.s
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2016-09-05 11:23:33 -0700
committerTim Newsome <tim@sifive.com>2016-09-05 11:23:33 -0700
commit73be8bab0e036969e6779155a5f86256eebbc331 (patch)
tree84ee97058b9582f77c88261409b74c7a7ec4d4e1 /tests/regs.s
parent3032e25ae63ff4174e311e87f737cd750828bd18 (diff)
downloadspike-remove-tests.zip
spike-remove-tests.tar.gz
spike-remove-tests.tar.bz2
Remove generic debug tests.remove-tests
They live in riscv-tests/debug now, since they also test gdb, and can be used to test other targets besides spike.
Diffstat (limited to 'tests/regs.s')
-rw-r--r--tests/regs.s43
1 files changed, 0 insertions, 43 deletions
diff --git a/tests/regs.s b/tests/regs.s
deleted file mode 100644
index e6456e1..0000000
--- a/tests/regs.s
+++ /dev/null
@@ -1,43 +0,0 @@
- .global main
-main:
- j main
-
-write_regs:
- sd x1, 0(a0)
- sd x2, 8(a0)
- sd x3, 16(a0)
- sd x4, 24(a0)
- sd x5, 32(a0)
- sd x6, 40(a0)
- sd x7, 48(a0)
- sd x8, 56(a0)
- sd x9, 64(a0)
- sd x11, 72(a0)
- sd x12, 80(a0)
- sd x13, 88(a0)
- sd x14, 96(a0)
- sd x15, 104(a0)
- sd x16, 112(a0)
- sd x17, 120(a0)
- sd x18, 128(a0)
- sd x19, 136(a0)
- sd x20, 144(a0)
- sd x21, 152(a0)
- sd x22, 160(a0)
- sd x23, 168(a0)
- sd x24, 176(a0)
- sd x25, 184(a0)
- sd x26, 192(a0)
- sd x27, 200(a0)
- sd x28, 208(a0)
- sd x29, 216(a0)
- sd x30, 224(a0)
- sd x31, 232(a0)
-
- csrr x1, 1 # fflags
-
-all_done:
- j all_done
-
-data:
- .fill 64, 8, 0