diff options
author | Andrew Waterman <andrew@sifive.com> | 2020-02-19 16:28:51 -0800 |
---|---|---|
committer | Chih-Min Chao <chihmin.chao@sifive.com> | 2020-03-03 22:48:23 -0800 |
commit | 1a5610b1c59c4a1a266176194e3174725174aba2 (patch) | |
tree | 2e7d737797c135a91bbd3efe0850774900c5dea1 /riscv | |
parent | 2cb3242115ebb87a527e575d1bdf259c6f253b93 (diff) | |
download | spike-1a5610b1c59c4a1a266176194e3174725174aba2.zip spike-1a5610b1c59c4a1a266176194e3174725174aba2.tar.gz spike-1a5610b1c59c4a1a266176194e3174725174aba2.tar.bz2 |
Debug can actually start at 0x0 now
38438778f0fc34df8cdf748cc9f35e1d15e0c8db fixed the bug.
cc @timsifive
Diffstat (limited to 'riscv')
-rw-r--r-- | riscv/decode.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/riscv/decode.h b/riscv/decode.h index 70a0dab..6d6c1a5 100644 --- a/riscv/decode.h +++ b/riscv/decode.h @@ -1883,8 +1883,7 @@ for (reg_t i = 0; i < vlmax && P.VU.vl != 0; ++i) { \ VI_VFP_LOOP_WIDE_END -// Seems that 0x0 doesn't work. -#define DEBUG_START 0x100 +#define DEBUG_START 0x0 #define DEBUG_END (0x1000 - 1) #endif |