fabianschuiki / moore

A hardware compiler based on LLHD and CIRCT
http://www.llhd.io
Apache License 2.0
246 stars 31 forks source link

How to use Moore to covert VHDL? #253

Open HNULiMingyuan opened 5 months ago

HNULiMingyuan commented 5 months ago

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 namedIEEEfound. How can I import IEEE library to moore compiler?