First full HDL version

This commit is contained in:
torlus
2014-03-03 21:04:21 +00:00
committed by David Gálvez
commit 3b80809684
367 changed files with 85885 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
// Copyright (C) 1991-2009 Altera Corporation
// Your use of Altera Corporation's design tools, logic functions
// and other software and tools, and its AMPP partner logic
// functions, and any output files from any of the foregoing
// (including device programming or simulation files), and any
// associated documentation or information are expressly subject
// to the terms and conditions of the Altera Program License
// Subscription Agreement, Altera MegaCore Function License
// Agreement, or other applicable license agreement, including,
// without limitation, that your use is for the sole purpose of
// programming logic devices manufactured by Altera and sold by
// Altera or its authorized distributors. Please refer to the
// applicable agreement for further details.
// PROGRAM "Quartus II 64-Bit"
// VERSION "Version 9.1 Build 222 10/21/2009 SJ Full Version"
// CREATED "Sat Mar 01 09:20:01 2014"
module mux41_2(S0,D2,S1,D0,INH,D1,Q);
input S0;
input D2;
input S1;
input D0;
input INH;
input D1;
output Q;
mux41 lpm_instance(.S0(S0),.D2(D2),.S1(S1),.D0(D0),.INH(INH),.D1(D1),.Q(Q));
endmodule