Update FST files to latest from GTkWave

This commit is contained in:
Cary R 2013-07-16 11:15:22 -07:00
parent e4cc12f3b9
commit 87235b618b
2 changed files with 4 additions and 3 deletions

View File

@ -2392,7 +2392,7 @@ static const char *vartypes[] = {
};
static const char *modtypes[] = {
"module", "task", "function", "begin", "fork"
"module", "task", "function", "begin", "fork", "generate"
};
struct fstCurrHier

View File

@ -59,9 +59,10 @@ enum fstScopeType {
FST_ST_VCD_FUNCTION = 2,
FST_ST_VCD_BEGIN = 3,
FST_ST_VCD_FORK = 4,
FST_ST_VCD_MAX = 4,
FST_ST_VCD_GENERATE = 5,
FST_ST_VCD_MAX = 5,
FST_ST_MAX = 4,
FST_ST_MAX = 5,
FST_ST_VCD_SCOPE = 254,
FST_ST_VCD_UPSCOPE = 255