Okay, so Wordle took the net by storm and was ported to a myriad of platforms including retro computers and microcontrollers with tight constraints. But have you played it on raw silicon yet?
After tapeout using the OpenLane flow and the Caravel harness, put the manufactured chip on a board with 6 push buttons, a VGA connector through resistor ladders as well as the usual Caravel requirements (voltage regulator, clock source, flash memory & passives) and start playing.
Sources live in verilog/rtl
:
display.v
is responsible for showing the game screen. It builds onvga.v
for interfacing with VGA hardware,frame.v
for the screen layout andsquare.v
for rendering individual squares with letters.control.v
contains code for the game logic and its inputs. It useswordlist.v
to generate solutions and to check whether words are valid,eval.v
to calculate the square colors anddebounce.v
to separate real button presses from fake ones.top.v
integrates the two aforementioned parts whileuser_project.v
anduser_project_wrapper.v
provide connections to the Caravel harnessfont.mem
contains the Apache licensed font Roboto Bold rendered at 38 ptswordlist.mem
contains a public domain word listpicks.mem
contains indices of a selection of 1000 words to be used as solutions, filtered by removing plurals, past participles, proper nouns and a few obscure words and then sorting by their frequency on the English Wikipedia