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
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;
ENTITYDriverISPORT
(
x : INstd_logic;
F : OUTstd_logic
);
ENDDriver;
ARCHITECTUREbehv1OFDriverISBEGINPROCESS (x)
BEGINIF (x ='1') THEN
F <='1';
ELSE
F <='0';
ENDIF;
ENDPROCESS;
ENDbehv1;
ARCHITECTUREbehv2OFDriverISBEGIN
F <= x;
ENDbehv2;
I was trying to format this example code:
http://esd.cs.ucr.edu/labs/tutorial/DRIVER.vhd
new lines aren't inserted
remove comments deletes all code.
The text was updated successfully, but these errors were encountered: