diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-04-11 16:18:45 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-04-11 16:18:45 -0700 |
commit | 35181a786684d13664814a4c51ea91e96aabd840 (patch) | |
tree | c3906c39ff3d9c9267b43ddf8947303570f0bd18 /tests | |
parent | 233edf00fec32c8acd7ed442323e0cd515f0e681 (diff) | |
parent | b15b410b41cca3a79bfcfc9c91f665815f31ab5b (diff) | |
download | yosys-35181a786684d13664814a4c51ea91e96aabd840.tar.gz yosys-35181a786684d13664814a4c51ea91e96aabd840.tar.bz2 yosys-35181a786684d13664814a4c51ea91e96aabd840.zip |
Merge remote-tracking branch 'origin/pmux2shiftx' into xc7mux
Diffstat (limited to 'tests')
-rw-r--r-- | tests/various/muxcover.ys | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/various/muxcover.ys b/tests/various/muxcover.ys index 7ac460f13..594e62af6 100644 --- a/tests/various/muxcover.ys +++ b/tests/various/muxcover.ys @@ -8,12 +8,13 @@ read_verilog -formal <<EOT 3'b?1?: Y = B; 3'b1??: Y = C; 3'b000: Y = D; + default: Y = 'bx; endcase endmodule EOT -## Examle usage for "pmuxtree" and "muxcover" +## Example usage for "pmuxtree" and "muxcover" proc pmuxtree @@ -35,7 +36,7 @@ read_verilog -formal <<EOT 3'b010: Y = B; 3'b100: Y = C; 3'b000: Y = D; - default: Y = 'bx; + default: Y = 'bx; endcase endmodule EOT |