Commit 4e989bc0 by Zachary Snow

remove extra space after signed in scalar types

parent 1b273432
......@@ -57,6 +57,7 @@ instance Show Type where
show (Alias xx rs) = printf "%s%s" xx (showRanges rs)
show (PSAlias ps xx rs) = printf "%s::%s%s" ps xx (showRanges rs)
show (CSAlias ps pm xx rs) = printf "%s#%s::%s%s" ps (showParams pm) xx (showRanges rs)
show (Implicit sg []) = show sg
show (Implicit sg rs) = printf "%s%s" (showPad sg) (dropWhile (== ' ') $ showRanges rs)
show (IntegerVector kw sg rs) = printf "%s%s%s" (show kw) (showPadBefore sg) (showRanges rs)
show (IntegerAtom kw sg ) = printf "%s%s" (show kw) (showPadBefore sg)
......
reject wire signed x;
affirm wire signed x;
reject parameter signed[15:0] X = 0;
affirm parameter signed [15:0] X = 0;
affirm ? (* foo *) (* bar *)
reject input wire [W + 1:1] b;
affirm input wire [W + 1:1] b;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment