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/vhdl
LLM (this repo) · 1PldbLinguistPygmentsHyperpolyglotRosettacode

Extensions 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.
ExtensionSourceStrengthSWH
.vhdllinguistprimary466.9K files
.vhdlpygmentsprimary466.9K files
.vhdlinguistsecondary2.2M files
.vhdpygmentssecondary2.2M files
.vhflinguistsecondary5.5K files
.vhilinguistsecondary3.7K files
.vholinguistsecondary206.7K files
.vhslinguistsecondary122 files
.vhtlinguistsecondary7.0K files
.vhwlinguistsecondary2.4K files

Related languages

JHDL (0.64)AHDL (0.62)HHDL (0.57)PSHDL (0.51)WDL (0.41)

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
code.vhd · added: 2025-10-22T13:06:49Z
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.)

Contribute — propose a file extension

Tell us where to find evidence about VHDL (mapped to pl/vhdl). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/VHDL/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← VGFJKDMLFJNDSJHGFYHJDZNYFBICHU,SBYFHDSR,JCBVFBDSJ; VHDL-AMS →