From f5bca8022fc80dfd06751e4e740760fa8de818de Mon Sep 17 00:00:00 2001 From: Bernhard Urban Date: Sat, 15 May 2010 15:58:31 +0200 Subject: [PATCH] parser: you didn't see this --- src/beh_parser_tb.vhd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/beh_parser_tb.vhd b/src/beh_parser_tb.vhd index 732f364..92b685c 100644 --- a/src/beh_parser_tb.vhd +++ b/src/beh_parser_tb.vhd @@ -81,7 +81,7 @@ begin f1_loop : while not endfile(f) loop readline (f, l); input := (others => nul); - if (l'length <= 72) then + if (l'length <= 71) then input(1 to l'length) := l.all; if (input(1) = '#') then next f1_loop; @@ -97,7 +97,7 @@ begin f2_loop : while not endfile(f) loop readline (f, l); expectedresult := (others => nul); - if (l'length <= 72) then + if (l'length <= 71) then expectedresult(1 to l'length) := l.all; if (expectedresult(1) = '#') then next f2_loop; -- 2.25.1