Revert "day2/vhdl: workaround ghdl#1529"

This reverts commit 7ae2f5a4af.
This commit is contained in:
Xiretza 2020-12-06 16:48:03 +01:00
parent f8f2470b12
commit f717860fe3

View file

@ -30,7 +30,7 @@ architecture behaviour of parser is
function char_to_digit(input : in character) return digit is function char_to_digit(input : in character) return digit is
begin begin
if not (input < '0') and input <= '9' then if input >= '0' and input <= '9' then
return character'pos(input) - character'pos('0'); return character'pos(input) - character'pos('0');
else else
return 0; return 0;