From 0b1ce1ce5cde086bc67a428d69eee52c865ef1a5 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sun, 18 Oct 2020 18:14:28 +0100 Subject: Add scheduling to driver --- driver/VericertDriver.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/driver/VericertDriver.ml b/driver/VericertDriver.ml index f500499..2b8d45f 100644 --- a/driver/VericertDriver.ml +++ b/driver/VericertDriver.ml @@ -91,14 +91,14 @@ let compile_c_file sourcename ifile ofile = close_out oc end else begin let verilog = - match Vericert.Compiler0.transf_hls csyntax with + match Vericert.Compiler0.transf_hls_temp csyntax with | Vericert.Errors.OK v -> v | Vericert.Errors.Error msg -> let loc = file_loc sourcename in fatal_error loc "%a" print_error msg in let oc = open_out ofile in - Vericert.PrintVerilog.print_program !option_debug_hls oc verilog; + Vericert.PrintRTLBlock.print_program oc verilog; close_out oc end -- cgit