
Title: Tiny Tapeout Accumulator
Author: Alp Bolukbasi
GitHub / Wokwi ID: 455300931094822913
This project implements a very simple event accumulator.
The design monitors a single digital input (in) while a clock (clk) is running. Each rising edge of the input increments an internal counter.
The current activity count is then encoded as a 4‑bit value on the output pins out0 through out3.
This illustrates a minimal stream processing block with no complex control logic.
rst_n).in pin with pulses or a button in a Wokwi simulation.out0–out3 reflect the accumulated count of events.| Pin | Name | Description |
|---|---|---|
| ui[0] | clk | System clock input |
| ui[1] | rst_n | Active-low reset |
| ui[2] | in | Input event signal |
| uo[0] | out[0] | Activity output bit 0 |
| uo[1] | out[1] | Activity output bit 1 |
| uo[2] | out[2] | Activity output bit 2 |
| uo[3] | out[3] | Activity output bit 3 |
Other pins are unused.
| # | Input | Output | Bidirectional |
|---|---|---|---|
| 0 | clk | out0 | |
| 1 | rst_n | out1 | |
| 2 | in | out2 | |
| 3 | out3 | ||
| 4 | |||
| 5 | |||
| 6 | |||
| 7 |