Add converter info to VHDL output.

This patch adds some converter information to the VHDL output.
This commit is contained in:
Cary R 2008-11-19 16:04:39 -08:00 committed by Stephen Williams
parent 24827c4b42
commit e416fb6486
1 changed files with 3 additions and 0 deletions

View File

@ -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;