aboutsummaryrefslogtreecommitdiffstats
path: root/driver
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-10-20 18:44:59 +0100
committerYann Herklotz <git@yannherklotz.com>2020-10-20 18:44:59 +0100
commit91e9202e6317ab3edd22562d659255d63a3fe65d (patch)
tree40101a29bfc14f5770ea8e367571c2cec7bc8275 /driver
parent3144c39f4533f0936f3df0537bf470461565f5e9 (diff)
downloadvericert-91e9202e6317ab3edd22562d659255d63a3fe65d.tar.gz
vericert-91e9202e6317ab3edd22562d659255d63a3fe65d.zip
Finish implementing scheduling and add top level export
Diffstat (limited to 'driver')
-rw-r--r--driver/VericertDriver.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver/VericertDriver.ml b/driver/VericertDriver.ml
index 2b8d45f..0362456 100644
--- a/driver/VericertDriver.ml
+++ b/driver/VericertDriver.ml
@@ -98,7 +98,7 @@ let compile_c_file sourcename ifile ofile =
let loc = file_loc sourcename in
fatal_error loc "%a" print_error msg in
let oc = open_out ofile in
- Vericert.PrintRTLBlock.print_program oc verilog;
+ Vericert.PrintVerilog.print_program !option_debug_hls oc verilog;
close_out oc
end