vhdlpp: Changed 'char' to 'byte'.

This commit is contained in:
Maciej Suminski 2015-06-12 16:33:20 +02:00
parent e6b57910a4
commit 6f867d6f01
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ int VTypePrimitive::emit_primitive_type(ostream&out) const
out << "real"; out << "real";
break; break;
case CHARACTER: case CHARACTER:
out << "char"; out << "byte";
break; break;
case TIME: case TIME:
out << "time"; out << "time";