Altera_Forum
Honored Contributor
13 years agoAdditional circuit within a circuit - if then else
Hello,
I am a beginner to VHDL and currently have an assignment to complete. It is as follows:- A digital circuit has two 4-bit inputs a
Hello,
I am a beginner to VHDL and currently have an assignment to complete. It is as follows:Thje error message seems self-explanatory to me, isn't it?
--- Quote Start --- Error (10309): VHDL Interface Declaration error in test.vhd(17): interface object "sub" of mode out cannot be read. Change object mode to buffer. --- Quote End ---You cannot read (eg. check the value of) an output port. Either create a temporary internal signal or change the mode from "out" to "buffer".
sub : buffer integer range 0 to 15;