Forum Discussion
Altera_Forum
Honored Contributor
11 years agoENTITY example1 IS
PORT (x1,x2,x3 : IN BIT; f : OUT BIT); END example1; ARCHITECTURE LogicFunc OF example1 IS BEGIN f <= (x1 OR x2 OR x3); END LogicFunc;ENTITY example1 IS
PORT (x1,x2,x3 : IN BIT; f : OUT BIT); END example1; ARCHITECTURE LogicFunc OF example1 IS BEGIN f <= (x1 OR x2 OR x3); END LogicFunc;