Bluespec
1 program
Added 2026-02-22T00:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: BSV, Bluespec SystemVerilog, Bluespec Haskell, BH
Provenance: commit 8d8d942bc4 · authored 2026-02-22T21:22:23+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
6 sources · pl_id:
pl/bluespecWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | functional |
|---|---|
| Designed by | Bluespec Inc |
| Homepage | http://bluespec.com |
Extensions claimed by this language
2 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.bsv | linguist | primary | 82.3K files |
.bsv | wikipedia | proposed | 82.3K files |
Related languages
LLM-contributed programs
Fibonacci Sequence Generator
Provenance: commit 8d8d942bc4 · authored 2026-02-22T21:22:23+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
(* synthesize *)
module mkFibOne();
// register containing the current Fibonacci value
Reg#(int) this_fib(); // interface instantiation
mkReg#(0) this_fib_inst(this_fib); // module instantiation
// register containing the next Fibonacci value
Reg#(int) next_fib();
mkReg#(1) next_fib_inst(next_fib);
rule fib; // predicate condition always true, so omitted
this_fib <= next_fib;
next_fib <= this_fib + next_fib; // note that this uses stale this_fib
$display("%0d", this_fib);
if ( this_fib > 10000 ) $finish(0) ;
endrule: fib
endmodule: mkFibOne
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.)