aboutsummaryrefslogtreecommitdiff
path: root/debug_rom
diff options
context:
space:
mode:
authorPrashanth Mundkur <prashanth.mundkur@gmail.com>2018-02-26 15:21:27 -0800
committerAndrew Waterman <aswaterman@gmail.com>2018-03-06 11:46:53 -0600
commitc1fda877781e5ce5c8c586affc123fe65bd174d9 (patch)
treea1a922055e93256456b3338380326256d87d1b36 /debug_rom
parente81425b8d6dc6a1d71ae681cb8239f4eeda822ea (diff)
downloadspike-c1fda877781e5ce5c8c586affc123fe65bd174d9.zip
spike-c1fda877781e5ce5c8c586affc123fe65bd174d9.tar.gz
spike-c1fda877781e5ce5c8c586affc123fe65bd174d9.tar.bz2
Fix a missed header file in the softfloat include install.
Diffstat (limited to 'debug_rom')
-rw-r--r--debug_rom/debug_rom_defines.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/debug_rom/debug_rom_defines.h b/debug_rom/debug_rom_defines.h
deleted file mode 100644
index 616cf59..0000000
--- a/debug_rom/debug_rom_defines.h
+++ /dev/null
@@ -1,23 +0,0 @@
-// See LICENSE file for license details.
-
-#ifndef DEBUG_ROM_DEFINES_H
-#define DEBUG_ROM_DEFINES_H
-
-// These are implementation-specific addresses in the Debug Module
-#define DEBUG_ROM_HALTED 0x100
-#define DEBUG_ROM_GOING 0x104
-#define DEBUG_ROM_RESUMING 0x108
-#define DEBUG_ROM_EXCEPTION 0x10C
-
-// Region of memory where each hart has 1
-// byte to read.
-#define DEBUG_ROM_FLAGS 0x400
-#define DEBUG_ROM_FLAG_GO 0
-#define DEBUG_ROM_FLAG_RESUME 1
-
-// These needs to match the link.ld
-#define DEBUG_ROM_WHERETO 0x300
-#define DEBUG_ROM_ENTRY 0x800
-#define DEBUG_ROM_TVEC 0x808
-
-#endif