diff options
| author | Rodrigo Alejandro Melo <rodrigomelo9@gmail.com> | 2017-02-19 12:18:05 -0300 |
|---|---|---|
| committer | Rodrigo Alejandro Melo <rodrigomelo9@gmail.com> | 2017-02-19 12:22:29 -0300 |
| commit | 4e42da408f9ddbd518601fcc6d1a0f50c941ec5e (patch) | |
| tree | c1578ea9d936124b456651c23d2d82d0f88eae64 /examples | |
| parent | 3c72037ab47fb87c525b2c7f741b8d5d1614a30b (diff) | |
| download | vhdl2vl-4e42da408f9ddbd518601fcc6d1a0f50c941ec5e.tar.gz vhdl2vl-4e42da408f9ddbd518601fcc6d1a0f50c941ec5e.zip | |
Promoted unsupported BASED NUMBER from warning to error
Because the resulting verilog had the unsupported notation BASE#NUMBER#.
Moreover, the 'ERROR:' string was added when an error is informed.
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/based.vhd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/based.vhd b/examples/based.vhd index 9ac5af9..1a8d2a1 100644 --- a/examples/based.vhd +++ b/examples/based.vhd @@ -10,6 +10,6 @@ begin foo2 <= 2#00101101110111#; foo8 <= 8#0177362#; foo10<= 10#01234#; - foo11<= 11#01234#; + --foo11<= 11#01234#; foo16<= 16#12af#; end rtl; |

