aboutsummaryrefslogtreecommitdiff
path: root/debug_rom/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2022-07-30Fix debug_rom.S build command error.Tim Newsome1-1/+1
Previously gcc would complain that link.lds was mentioned twice (once on the command line and once with a -T directive.)
2018-03-06Fix install of a missed header from debug_rom.Prashanth Mundkur1-1/+1
The installed header files from the riscv subproject were incomplete, since processor.h includes debug_rom_defines.h, and the latter was not installed. Fix by moving it into riscv/, add it to the riscv subproject header list, which ensures it will get installed. While here, also add a missed dependency of debug_rom on riscv/encoding.h to debug_rom/Makefile.
2017-06-08`make clean && make` works again in debug_romTim Newsome1-1/+1
2017-04-17debug: move the debug_rom defines to a seperate fileMegan Wachs1-5/+2
2017-04-17debug: Use more unique debug ROM namesMegan Wachs1-1/+4
2017-04-17debug: Use a more practical debug ROMMegan Wachs1-8/+2
2016-06-22Parameterize debug ROM contents on XLENAndrew Waterman1-8/+18
2016-05-23Move debug rom link map to the right place.Tim Newsome1-1/+1
Turns out this doesn't actually matter, but it's better to be correct.
2016-05-23Add debug_module bus device.Tim Newsome1-1/+1
This should replace the ROM hack I implemented earlier, but for now both exist together. Back to the point where gdb connects, core jumps to ROM->RAM->ROM.
2016-05-23Clean up how Debug ROM is included.Tim Newsome1-0/+20
I'm not thrilled about including a static copy in so many cc files, and making the compiler throw it out. But without really grokking the Makefile this is the best it's going to be.
2016-05-23Can jump to and execute Debug ROM.Tim Newsome1-20/+0
Connect with gdb, and the core will jump to Debug ROM and start executing it. Then it crashes when it jumps to 0x400 because Debug RAM isn't implemented (and doesn't live there anyway, for now).
2016-05-23Check in compiled debug ROM.Tim Newsome1-3/+6
Not everybody will have a cross-compiled toolchain set up when they build spike.
2016-05-23Add debug rom code.Tim Newsome1-0/+17