ENTITY rom_data_outsel IS PORT ( nprech : in BIT; mux0 : in BIT; mux1 : in BIT; mux2 : in BIT; mux3 : in BIT; mux4 : in BIT; mux5 : in BIT; mux6 : in BIT; mux7 : in BIT; bit0 : in BIT; bit1 : in BIT; bit2 : in BIT; bit3 : in BIT; bit4 : in BIT; bit5 : in BIT; bit6 : in BIT; bit7 : in BIT; q : out BIT; vdd : in BIT; vss : in BIT ); END rom_data_outsel; ARCHITECTURE VBE OF rom_data_outsel IS BEGIN ASSERT (vdd and not (vss)) REPORT "power supply is missing on rom_data_outsel" SEVERITY WARNING; q <= (mux0 and bit0) or (mux1 and bit1) or (mux2 and bit2) or (mux3 and bit3) or (mux4 and bit4) or (mux5 and bit5) or (mux6 and bit6) or (mux7 and bit7); END;