hdl.ast: cast Mux() selector to bool if it is not a 1-bit value.
Fixes #232.
This commit is contained in:
parent
7777b7b98c
commit
b227352258
|
@ -523,6 +523,8 @@ def Mux(sel, val1, val0):
|
|||
Value, out
|
||||
Output ``Value``. If ``sel`` is asserted, the Mux returns ``val1``, else ``val0``.
|
||||
"""
|
||||
if len(sel) != 1:
|
||||
sel = Value.wrap(sel).bool()
|
||||
return Operator("m", [sel, val1, val0])
|
||||
|
||||
|
||||
|
|
|
@ -276,6 +276,11 @@ class OperatorTestCase(FHDLTestCase):
|
|||
v4 = Mux(s, Const(0, (4, False)), Const(0, (4, True)))
|
||||
self.assertEqual(v4.shape(), (5, True))
|
||||
|
||||
def test_mux_wide(self):
|
||||
s = Const(0b100)
|
||||
v = Mux(s, Const(0, (4, False)), Const(0, (6, False)))
|
||||
self.assertEqual(repr(v), "(m (b (const 3'd4)) (const 4'd0) (const 6'd0))")
|
||||
|
||||
def test_bool(self):
|
||||
v = Const(0).bool()
|
||||
self.assertEqual(repr(v), "(b (const 1'd0))")
|
||||
|
|
Loading…
Reference in a new issue