summaryrefslogtreecommitdiff
path: root/riscv/platform_main.ml
diff options
context:
space:
mode:
authorPrashanth Mundkur2018-06-22 09:11:57 -0700
committerPrashanth Mundkur2018-06-22 09:11:57 -0700
commit6793762f3b6087074fb3ce2c523975d6c5cab1c7 (patch)
tree750c57c318515351fc8dda7bdcb01929c3261ee4 /riscv/platform_main.ml
parent39b705bb410083fe7e791614d86721fc22ffa6a1 (diff)
More trace log tweaks.
Diffstat (limited to 'riscv/platform_main.ml')
-rw-r--r--riscv/platform_main.ml4
1 files changed, 2 insertions, 2 deletions
diff --git a/riscv/platform_main.ml b/riscv/platform_main.ml
index c4421cce..6014e7a9 100644
--- a/riscv/platform_main.ml
+++ b/riscv/platform_main.ml
@@ -64,7 +64,7 @@ let elf_arg =
Arg.parse options (fun s -> opt_file_arguments := !opt_file_arguments @ [s])
usage_msg;
( match !opt_file_arguments with
- | f :: _ -> prerr_endline ("Loading ELF file " ^ f); f
+ | f :: _ -> prerr_endline ("Sail/RISC-V: running ELF file " ^ f); f
| _ -> (prerr_endline "Please provide an ELF file."; exit 0)
)
@@ -78,7 +78,7 @@ let () =
try ( zinit_platform (); (* devices *)
zinit_sys (); (* processor *)
zPC := pc;
- zloop (Elf_loader.elf_tohost ())
+ zloop ()
)
with
| ZError_not_implemented (zs) ->