VHDL
1 program
Added 2025-10-22T13:06:49Z
Model: anthropic/claude-3.5-sonnetTemp: 0.4
Evidence
Report issue
View issues
Aliases: VHSIC Hardware Description Language
Provenance: commit a818fca9b9 · authored 2025-10-22T15:06:49+02:00 · model anthropic/claude-3.5-sonnet
Sources mentioning this language
6 sources · pl_id:
pl/vhdlExtensions claimed by this language
10 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 |
|---|---|---|---|
.vhdl | linguist | primary | 466.9K files |
.vhdl | pygments | primary | 466.9K files |
.vhd | linguist | secondary | 2.2M files |
.vhd | pygments | secondary | 2.2M files |
.vhf | linguist | secondary | 5.5K files |
.vhi | linguist | secondary | 3.7K files |
.vho | linguist | secondary | 206.7K files |
.vhs | linguist | secondary | 122 files |
.vht | linguist | secondary | 7.0K files |
.vhw | linguist | secondary | 2.4K files |
Related languages
LLM-contributed programs
Simple 4-bit Counter
Provenance: commit a818fca9b9 · authored 2025-10-22T15:06:49+02:00 · model anthropic/claude-3.5-sonnet · Temp 0.4
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
entity counter is
Port ( clk : in STD_LOGIC;
reset : in STD_LOGIC;
counter_out : out STD_LOGIC_VECTOR (3 downto 0));
end counter;
architecture Behavioral of counter is
signal counter_up : std_logic_vector(3 downto 0);
begin
process(clk,reset)
begin
if(reset='1') then
counter_up <= "0000";
elsif(rising_edge(clk)) then
counter_up <= counter_up + 1;
end if;
end process;
counter_out <= counter_up;
end Behavioral;
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.)