- AHDL
AHDL is a proprietary
Hardware Description Language (HDL) fromAltera Corporation for programming theirComplex Programmable Logic Device s (CPLD) andField Programmable Gate Array s (FPGA). This language has aAda programming language -like syntax and similar operation toVHDL orVerilog . It is supported by Altera's Quartus and Max+ series of compilers.A disadvantage of AHDL is that it is proprietary. An advantage of AHDL is that all language constructs are synthesizable. AHDL is to Verilog much as assembly language is to a higher-level programming language: in AHDL, you have more control but less high-level support.
Example
% a simple AHDL up counter, released to public domain 11/13/2006 %% [block quotations achieved with percent sign] %% like c, ahdl functions must be prototyped %% PROTOTYPE: FUNCTION COUNTER (CLK) RETURNS (CNTOUT [7..0] ); %
% function declaration, where inputs, outputs, andbidirectional pins are declared %% also like c, square brakets indicate an array %
SUBDESIGN COUNTER( CLK :INPUT; CNTOUT [7..0] :OUTPUT;)
% variables can be anything from flip-flops (as in this case),tri-state buffers, state machines, to user defined functions %
VARIABLE TIMER [7..0] : DFF;
% as with all hardware description languages, think of this less as an algorithm and more as wiring nodes together %
BEGIN DEFAULTS
TIMER [] .prn = VCC; % this takes care of d-ff resets % TIMER [] .clrn = VCC; END DEFAULTS;
TIMER [] .d = TIMER [] .q + H"1";END;
Wikimedia Foundation. 2010.