Forum Discussion
Altera_Forum
Honored Contributor
13 years agoUnderstanding another HDL and digital logic will make life easier. AHDL is almost a netlist language. You declare registers/wires and just connect them together.
eg:
a : dff; --d flip-flop
a.clk = clk;
a.d = input;
output = a.q;
But for a tutorial, why not try google? http://lmgtfy.com/?q=ahdl+tutorial As Im sure you know, AHDL is now a dead language. Quartus will still compile it, but you wont be able to simulate it. Thats the masive advantage of VHDL or Verilog.