Add converter info to VHDL output.
This patch adds some converter information to the VHDL output.
This commit is contained in:
parent
24827c4b42
commit
e416fb6486
|
|
@ -188,6 +188,9 @@ extern "C" int target_design(ivl_design_t des)
|
|||
if (0 == g_errors) {
|
||||
const char *ofname = ivl_design_flag(des, "-o");
|
||||
ofstream outfile(ofname);
|
||||
outfile << "-- This VHDL was converted from Verilog using the" << endl
|
||||
<< "-- Icarus Verilog VHDL Code Generator " VERSION
|
||||
" (" VERSION_TAG ")" << endl << endl;
|
||||
|
||||
// Make sure we only emit one example of each type of entity
|
||||
set<string> seen_entities;
|
||||
|
|
|
|||
Loading…
Reference in New Issue