fix rtlil const formatting
This commit is contained in:
parent
83540e898a
commit
e08e9ccdf2
|
@ -63,7 +63,7 @@ impl SigSpec {
|
||||||
impl std::fmt::Display for SigSpec {
|
impl std::fmt::Display for SigSpec {
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
match self {
|
match self {
|
||||||
SigSpec::Const(val, width) => write!(f, "{}'{}", width, val)?,
|
SigSpec::Const(val, width) => write!(f, "{0}'{2:01$b}", width, *width as usize, val)?,
|
||||||
SigSpec::Wire(id) => write!(f, "{}", id)?,
|
SigSpec::Wire(id) => write!(f, "{}", id)?,
|
||||||
};
|
};
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Reference in New Issue