aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Thomas <arun.thomas@gmail.com>2014-10-30 10:20:08 -0400
committerArun Thomas <arun.thomas@gmail.com>2014-10-30 10:20:08 -0400
commit27f16e643f25e5e48a10096de76be125f45a1358 (patch)
treebfdcfd2f70e3d9ff43c1d9269e95703fea4873c5
parentc7acf41da5b64ce083c83b0d2fe6e9a7614d576a (diff)
downloadspike-27f16e643f25e5e48a10096de76be125f45a1358.zip
spike-27f16e643f25e5e48a10096de76be125f45a1358.tar.gz
spike-27f16e643f25e5e48a10096de76be125f45a1358.tar.bz2
dummy-rocc-test build fix
-rw-r--r--riscv/dummy-rocc-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/riscv/dummy-rocc-test.c b/riscv/dummy-rocc-test.c
index 4071ece..ce48179 100644
--- a/riscv/dummy-rocc-test.c
+++ b/riscv/dummy-rocc-test.c
@@ -1,11 +1,11 @@
// The following is a RISC-V program to test the functionality of the
// dummy RoCC accelerator.
-// Compile with riscv-gcc dummy.c
+// Compile with riscv-gcc dummy-rocc-test.c
// Run with spike --extension=dummy pk a.out
#include <assert.h>
#include <stdio.h>
-#include <cstdint>
+#include <stdint.h>
int main() {
uint64_t x = 123, y = 456, z = 0;