diff options
author | Jerry Zhao <jerryz123@berkeley.edu> | 2023-01-03 17:05:52 -0800 |
---|---|---|
committer | Jerry Zhao <jerryz123@berkeley.edu> | 2023-01-04 11:02:13 -0800 |
commit | 044fedabee8354b0c4cbe6fcf9769f1f85d61d48 (patch) | |
tree | d649268088b82bafc4c4e19afd6fb3a0dfad374c | |
parent | 0a59b06f3b5542fab8d78ae3ee0b8276ec5acd36 (diff) | |
download | riscv-isa-sim-044fedabee8354b0c4cbe6fcf9769f1f85d61d48.zip riscv-isa-sim-044fedabee8354b0c4cbe6fcf9769f1f85d61d48.tar.gz riscv-isa-sim-044fedabee8354b0c4cbe6fcf9769f1f85d61d48.tar.bz2 |
Untabify ci-tests/testlib.c
-rw-r--r-- | ci-tests/testlib.c | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/ci-tests/testlib.c b/ci-tests/testlib.c index e9b7daa..5eac832 100644 --- a/ci-tests/testlib.c +++ b/ci-tests/testlib.c @@ -17,16 +17,16 @@ int main() std::vector<mem_cfg_t> mem_cfg { mem_cfg_t(0x80000000, 0x10000000) }; std::vector<int> hartids = {0}; cfg_t cfg(std::make_pair(0, 0), - nullptr, - "rv64gcv", - "MSU", - "vlen:128,elen:64", - false, - endianness_little, - 16, - mem_cfg, - hartids, - false); + nullptr, + "rv64gcv", + "MSU", + "vlen:128,elen:64", + false, + endianness_little, + 16, + mem_cfg, + hartids, + false); std::vector<std::pair<reg_t, abstract_device_t*>> plugin_devices; std::vector<std::string> htif_args {"pk", "hello"}; debug_module_config_t dm_config = { @@ -42,14 +42,14 @@ int main() }; std::vector<std::pair<reg_t, mem_t*>> mems = make_mems(cfg.mem_layout()); sim_t sim(&cfg, false, - mems, - plugin_devices, - htif_args, - dm_config, - nullptr, - true, - nullptr, - false, - nullptr); + mems, + plugin_devices, + htif_args, + dm_config, + nullptr, + true, + nullptr, + false, + nullptr); sim.run(); } |