When you work with multi-bit values, you will often want to route the
different bits in different directions.
The Base library's splitter tool ( allows you to accomplish this.
For example, suppose we want to build a circuit taking an eight-bit input and outputting the AND of its two nibbles (the upper four bits and the lower four bits). We will have an eight-bit value coming from the input pin, and we want to split that into two four-bit values. In the below circuit, we have used a splitter to accomplish this.
Despite the talk of values going in and out a splitter, in fact values can go through a splitter in either direction automatically. Indeed, the different bits going through the splitter can work in different ways at the same time, as in the unusual example below, where the middle bit is traveling leftward, while the other two bits are traveling rightward.
Next: Incompatibility Errors.