A scope port can be a uwire for some cases.
This commit is contained in:
parent
922b74be9e
commit
d9c400ac0c
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (C) 2010-2012 Cary R. (cygcary@yahoo.com)
|
* Copyright (C) 2010-2013 Cary R. (cygcary@yahoo.com)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
@ -438,7 +438,8 @@ static void emit_sig_type(ivl_signal_t sig)
|
||||||
} else {
|
} else {
|
||||||
assert((type == IVL_SIT_TRI) ||
|
assert((type == IVL_SIT_TRI) ||
|
||||||
(type == IVL_SIT_TRI0) ||
|
(type == IVL_SIT_TRI0) ||
|
||||||
(type == IVL_SIT_TRI1));
|
(type == IVL_SIT_TRI1) ||
|
||||||
|
(type == IVL_SIT_UWIRE));
|
||||||
if (ivl_signal_data_type(sig) == IVL_VT_REAL) {
|
if (ivl_signal_data_type(sig) == IVL_VT_REAL) {
|
||||||
fprintf(stderr, "%s:%u: vlog95 error: Real net ports (%s) "
|
fprintf(stderr, "%s:%u: vlog95 error: Real net ports (%s) "
|
||||||
"are not supported.\n",
|
"are not supported.\n",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue