Micro Processor

Runs a sequence of logic instructions in a loop. Can be used to control units and buildings.
Overview
The 
Micro Processors are best deployed where limited area or aesthetic constraints require dense placement of logic components. Their execution speed is lower than that of larger processor variants, so they are not optimal for highly instruction-intense tasks that require many instructions per second. Instead, the 
Common practical applications include:
- Logic display art: driving text, symbols, or pixel displays where many small processors can be placed closely together to build complex visual patterns without consuming large amounts of space.
- Counters: implementing compact counters, timers, or incremental state machines that do not require rapid updates.
- Simple unit controllers: controlling individual or small groups of units with straightforward instruction sets; suitable for basic movement, targeting, or state-based behaviors where instruction rate is not critical.
- Any circuitry that prioritizes compactness over speed, such as decorative or space-limited control modules.
When designing with Micro Processors, consider the following:
- Compact layouts using multiple Micro Processors can replicate functionality of a larger processor but will run slower overall; distribute logic so that time-sensitive routines are minimized on Micro Processors.
- Use longer, simpler instruction loops rather than deeply nested or high-frequency operations. Offload high-throughput tasks to full-size processors when available.
- Combine with Memory blocks and efficient wiring to reduce the number of executed instructions needed per cycle.
- For visual projects (logic display art), synchronize multiple Micro Processors via timing signals so that update patterns remain coherent despite individual processors' lower instruction rates.
For an introduction to basic logic concepts and wiring that apply to the 
Official description
Runs a sequence of logic instructions in a loop. Can be used to control units and buildings.