Here is my VHDL code:
entity test is
port (
x1, x2 : in bit;
f : out bit
);
end test;
architecture behavior of test is
begin
f <= x1 and x2;
end behavior;
In Quartus (v. 18.1) I go to File->New->University Program VWF. In Simulation Waveform editor, I go to edit->insert->insert node or bus->node finder, push 'list' and select all nodes (in this case x1, x2, and f). Then I go to Simulation->Run functional simulation and get the error:
# ** Fatal: (vsim-3807) Types do not match between component and entity for port "f".
Do I need to change the type of port "f" in the component somewhere on Quartus, or what?