You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just wrote a simple counter using VHDL.In the first few lines, I import IEEE library: library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.NUMERIC_STD.ALL;
I covert the VHDL code using command:moore -f llhd -e counter_tb -o counter_tb.llhd counter_test.vhdl counter_tb.vhdl
While I just got an error:error: no library named IEEE found.
How can I import IEEE library to moore compiler?
The text was updated successfully, but these errors were encountered:
I just wrote a simple counter using VHDL.In the first few lines, I import IEEE library:
library IEEE; use IEEE.STD_LOGIC_1164.ALL; use IEEE.NUMERIC_STD.ALL;
I covert the VHDL code using command:
moore -f llhd -e counter_tb -o counter_tb.llhd counter_test.vhdl counter_tb.vhdl
While I just got an error:
error: no library named
IEEEfound
.How can I import IEEE library to moore compiler?
The text was updated successfully, but these errors were encountered: