Now that we know how to drive 7-segments displays, let's aggregate them to make big counters.
Let's try to build a big display that uses eight 7-segments displays, so that it can show numbers from 0 to 99999999.
If we build it the straightforward way, we are using 64 FPGA pins.
Now we are using only 16 FPGA pins.
The trade-off is that only one display out of eight can be lit at any particular time.
But if the FPGA switches "fast enough", it seems that all the displays are lit.
"Fast enough" means 100Hz or more.
At 100Hz, a display cycle would last 10ms (and each display would be lit 1.25ms per cycle).
Notes:
Here's a counter design that drives a multiplexed 8-digits 7-segments display.
The counter goes from 00000000 to 99999999, then rolls-over.
Get the file here.