Administrator
|
"_" is not a legal character in pin/wire names. They must start with "a-zA-Z" and can only contain "a-zA-Z0-9". (The parser encountered the "_" and began looking for the next token.)
"out = e,f,g,h" DMux4Way does not have a pin named "out" so you can't connect to it. (You already have the correct output connections, "a= e, b=f, c=g, d=h".)
Hint: your Not and 2 Ands are implementing a DMux.
--Mark
|