diff --git a/src/main/resources/lang/lang_en.xml b/src/main/resources/lang/lang_en.xml index 3ee71c8f3..579205da9 100644 --- a/src/main/resources/lang/lang_en.xml +++ b/src/main/resources/lang/lang_en.xml @@ -560,7 +560,7 @@ The data to be stored in the register Rw. Counter - count + Counter A simple counter component. The clock input increases the counter. Can be reset back to 0 with the clr input. The number of bits can be set in the attribute dialog. diff --git a/src/test/resources/dig/external/ghdl/ghdl.dig b/src/test/resources/dig/external/ghdl/ghdl.dig index 14ee0663b..9d444a03f 100644 --- a/src/test/resources/dig/external/ghdl/ghdl.dig +++ b/src/test/resources/dig/external/ghdl/ghdl.dig @@ -141,7 +141,9 @@ end add_arch; loop(a,16) loop(b,16) - (a) (b) 0 ((a+b)>>4) (a+b) + let sum=a+b; + (a) (b) 0 (sum>>4) (sum) + (a) (b) 1 ((sum+1)>>4) (sum+1) end loop end loop