aboutsummaryrefslogtreecommitdiff
path: root/fesvr
diff options
context:
space:
mode:
authorJohn Fang <zitaofang@berkeley.edu>2021-09-23 22:00:17 -0700
committerGitHub <noreply@github.com>2021-09-23 22:00:17 -0700
commitce42f1b55a3fa5a3a522439b5370be2256f68862 (patch)
tree36261b502a87cbaf1a71170051ae647b113dd5d7 /fesvr
parent6827b742227f556cc95cd7908bf3cdb393baf6e2 (diff)
downloadriscv-isa-sim-ce42f1b55a3fa5a3a522439b5370be2256f68862.zip
riscv-isa-sim-ce42f1b55a3fa5a3a522439b5370be2256f68862.tar.gz
riscv-isa-sim-ce42f1b55a3fa5a3a522439b5370be2256f68862.tar.bz2
Fix torture signature (#808)
Diffstat (limited to 'fesvr')
-rw-r--r--fesvr/htif.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/fesvr/htif.cc b/fesvr/htif.cc
index 234032b..7150039 100644
--- a/fesvr/htif.cc
+++ b/fesvr/htif.cc
@@ -52,6 +52,8 @@ htif_t::htif_t()
htif_t::htif_t(int argc, char** argv) : htif_t()
{
+ //Set line size as 16 by default.
+ line_size = 16;
parse_arguments(argc, argv);
register_devices();
}