vhdlpp: 'integer' is emitted as 'integer' instead of 'bool [31:0]'.

This commit is contained in:
Maciej Suminski 2014-08-22 16:45:17 +02:00
parent 10446df80e
commit c846b2cf3f
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ int VTypePrimitive::emit_primitive_type(ostream&out) const
out << "logic";
break;
case INTEGER:
out << "bool [31:0]";
out << "integer";
break;
case REAL:
out << "real";