aboutsummaryrefslogtreecommitdiffstats
path: root/src/translation
diff options
context:
space:
mode:
authorMichalis Pardalos <m.pardalos@gmail.com>2020-11-20 16:40:45 +0000
committerMichalis Pardalos <m.pardalos@gmail.com>2020-11-20 19:21:43 +0000
commit982e6c69a52e8ec4e677147004cc5472f8a80d6d (patch)
treeddbbebe17b3bfdf8069ab03735b5f0749839eb17 /src/translation
parent9b87637d3e4d6a75dee1221b017e3ccf6632642e (diff)
downloadvericert-982e6c69a52e8ec4e677147004cc5472f8a80d6d.tar.gz
vericert-982e6c69a52e8ec4e677147004cc5472f8a80d6d.zip
Translate instantiations from HTL to verilog
Diffstat (limited to 'src/translation')
-rw-r--r--src/translation/Veriloggen.v5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/translation/Veriloggen.v b/src/translation/Veriloggen.v
index a0be0fa..772dc89 100644
--- a/src/translation/Veriloggen.v
+++ b/src/translation/Veriloggen.v
@@ -37,6 +37,8 @@ Definition arr_to_Vdeclarr_fun (a : reg * (option io * arr_decl)) :=
Definition arr_to_Vdeclarr arrdecl := map arr_to_Vdeclarr_fun arrdecl.
+Definition inst_to_Vdecl := map (fun (a: positive * instantiation) => match a with (_, decl) => Vinstancedecl decl end).
+
Definition transl_module (m : HTL.module) : Verilog.module :=
let case_el_ctrl := transl_list (PTree.elements m.(mod_controllogic)) in
let case_el_data := transl_list (PTree.elements m.(mod_datapath)) in
@@ -46,7 +48,8 @@ Definition transl_module (m : HTL.module) : Verilog.module :=
(Vcase (Vvar m.(mod_st)) case_el_ctrl (Some Vskip)))
:: Valways (Vposedge m.(mod_clk)) (Vcase (Vvar m.(mod_st)) case_el_data (Some Vskip))
:: List.map Vdeclaration (arr_to_Vdeclarr (AssocMap.elements m.(mod_arrdecls))
- ++ scl_to_Vdecl (AssocMap.elements m.(mod_scldecls))) in
+ ++ scl_to_Vdecl (AssocMap.elements m.(mod_scldecls))
+ ++ inst_to_Vdecl (AssocMap.elements m.(mod_insts))) in
Verilog.mkmodule m.(mod_start)
m.(mod_reset)
m.(mod_clk)