things seem pretty stable now
This commit is contained in:
parent
8f763ae52b
commit
e9aa4735dd
3 changed files with 219 additions and 112 deletions
|
@ -40,7 +40,8 @@ pub(super) fn parse_var<'a>(
|
|||
let no_bits = match var_type {
|
||||
Sig_Type::Integer | Sig_Type::Parameter |
|
||||
Sig_Type::Real | Sig_Type::Reg |
|
||||
Sig_Type::Wire | Sig_Type::Tri1 => {
|
||||
Sig_Type::Wire | Sig_Type::Tri1 |
|
||||
Sig_Type::Time => {
|
||||
let no_bits = word.parse::<usize>().expect(parse_err.as_str());
|
||||
Some(no_bits)
|
||||
}
|
||||
|
|
Reference in a new issue