Veryl
1 program
Added 2026-02-08T16:12:07Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 3489947087 · authored 2026-02-08T17:12:29+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/verylRelated languages
LLM-contributed programs
8-bit Counter
Provenance: commit 3489947087 · authored 2026-02-08T17:12:29+01:00 · agent claude-code · model sonnet · WebSearch disabled
module Counter (
i_clk: input logic,
i_rst: input logic,
o_count: output logic<8>
) {
var count: logic<8>;
always_ff (i_clk, i_rst) {
if_reset {
count = 0;
} else {
count += 1;
}
}
assign o_count = count;
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)