Created
November 21, 2013 03:12
-
-
Save jz5/7575521 to your computer and use it in GitHub Desktop.
unbased_unsized_literal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
logic [63:0] a; | |
a = '0; // | |
a = '1; // a = 64'hFFFF_FFFF_FFFF_FFFF | |
a = 'x; // 'X も OK | |
a = 'z; // 'Z も OK |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment