Skip to content

Commit

Permalink
Restructuring
Browse files Browse the repository at this point in the history
  • Loading branch information
samdejong86 committed May 2, 2018
1 parent f339800 commit 867c7e4
Show file tree
Hide file tree
Showing 44 changed files with 171 additions and 2,764 deletions.
6 changes: 0 additions & 6 deletions ADC_Mux.qip

This file was deleted.

104 changes: 0 additions & 104 deletions ADC_Mux.v

This file was deleted.

73 changes: 0 additions & 73 deletions ADC_Mux_bb.v

This file was deleted.

6 changes: 0 additions & 6 deletions ADC_Mux_inst.v

This file was deleted.

3 changes: 2 additions & 1 deletion ArriaVADCEthernet_top.qsf
Original file line number Diff line number Diff line change
Expand Up @@ -1852,11 +1852,12 @@ set_global_assignment -name SIGNALTAP_FILE ArriaVADCEthernet_top.stp
set_global_assignment -name QIP_FILE adc_mux/ADC_Mux.qip
set_global_assignment -name QIP_FILE ddio_buffer/enet_gtx_clk_ddio_buffer.qip
set_global_assignment -name QIP_FILE a5gx_starter_fpga_bup_qsys/synthesis/a5gx_starter_fpga_bup_qsys.qip
set_global_assignment -name QIP_FILE adc_pll/adc_pll.qip
set_global_assignment -name VERILOG_FILE src/trigger.v
set_global_assignment -name VERILOG_FILE src/adcSync.v
set_global_assignment -name SYSTEMVERILOG_FILE src/delayVec.sv
set_global_assignment -name SYSTEMVERILOG_FILE src/waveformGenerator.sv
set_global_assignment -name SYSTEMVERILOG_FILE src/getSample.sv
set_global_assignment -name QIP_FILE adc_pll/adc_pll.qip
set_global_assignment -name SIP_FILE adc_pll/adc_pll.sip
set_global_assignment -name SLD_FILE db/ArriaVADCEthernet_top_auto_stripped.stp
set_instance_assignment -name PARTITION_HIERARCHY root_partition -to | -section_id Top
20 changes: 0 additions & 20 deletions adcSync.v

This file was deleted.

53 changes: 53 additions & 0 deletions adc_mux/greybox_tmp/greybox_tmp/mg8t9.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
//lpm_mux CBX_SINGLE_OUTPUT_FILE="ON" LPM_SIZE=2 LPM_TYPE="LPM_MUX" LPM_WIDTH=1 LPM_WIDTHS=1 data result sel
//VERSION_BEGIN 16.1 cbx_mgl 2016:10:19:22:10:30:SJ cbx_stratixii 2016:10:19:21:26:20:SJ cbx_util_mgl 2016:10:19:21:26:20:SJ VERSION_END
// synthesis VERILOG_INPUT_VERSION VERILOG_2001
// altera message_off 10463



// Copyright (C) 2016 Intel Corporation. All rights reserved.
// Your use of Intel 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 Intel Program License
// Subscription Agreement, the Intel Quartus Prime License Agreement,
// the Intel 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 Intel and sold by Intel or its
// authorized distributors. Please refer to the applicable
// agreement for further details.



//synthesis_resources = lpm_mux 1
//synopsys translate_off
`timescale 1 ps / 1 ps
//synopsys translate_on
module mg8t9
(
data,
result,
sel) /* synthesis synthesis_clearbox=1 */;
input [1:0] data;
output [0:0] result;
input [0:0] sel;

wire [0:0] wire_mgl_prim1_result;

lpm_mux mgl_prim1
(
.data(data),
.result(wire_mgl_prim1_result),
.sel(sel));
defparam
mgl_prim1.lpm_size = 2,
mgl_prim1.lpm_type = "LPM_MUX",
mgl_prim1.lpm_width = 1,
mgl_prim1.lpm_widths = 1;
assign
result = wire_mgl_prim1_result;
endmodule //mg8t9
//VALID FILE
53 changes: 53 additions & 0 deletions adc_mux/greybox_tmp/greybox_tmp/mgsu9.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
//lpm_mux CBX_SINGLE_OUTPUT_FILE="ON" LPM_SIZE=2 LPM_TYPE="LPM_MUX" LPM_WIDTH=14 LPM_WIDTHS=1 data result sel
//VERSION_BEGIN 16.1 cbx_mgl 2016:10:19:22:10:30:SJ cbx_stratixii 2016:10:19:21:26:20:SJ cbx_util_mgl 2016:10:19:21:26:20:SJ VERSION_END
// synthesis VERILOG_INPUT_VERSION VERILOG_2001
// altera message_off 10463



// Copyright (C) 2016 Intel Corporation. All rights reserved.
// Your use of Intel 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 Intel Program License
// Subscription Agreement, the Intel Quartus Prime License Agreement,
// the Intel 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 Intel and sold by Intel or its
// authorized distributors. Please refer to the applicable
// agreement for further details.



//synthesis_resources = lpm_mux 1
//synopsys translate_off
`timescale 1 ps / 1 ps
//synopsys translate_on
module mgsu9
(
data,
result,
sel) /* synthesis synthesis_clearbox=1 */;
input [27:0] data;
output [13:0] result;
input [0:0] sel;

wire [13:0] wire_mgl_prim1_result;

lpm_mux mgl_prim1
(
.data(data),
.result(wire_mgl_prim1_result),
.sel(sel));
defparam
mgl_prim1.lpm_size = 2,
mgl_prim1.lpm_type = "LPM_MUX",
mgl_prim1.lpm_width = 14,
mgl_prim1.lpm_widths = 1;
assign
result = wire_mgl_prim1_result;
endmodule //mgsu9
//VALID FILE
53 changes: 53 additions & 0 deletions adc_mux/greybox_tmp/greybox_tmp/mguu9.v
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
//lpm_mux CBX_SINGLE_OUTPUT_FILE="ON" LPM_SIZE=14 LPM_TYPE="LPM_MUX" LPM_WIDTH=1 LPM_WIDTHS=4 data result sel
//VERSION_BEGIN 16.1 cbx_mgl 2016:10:19:22:10:30:SJ cbx_stratixii 2016:10:19:21:26:20:SJ cbx_util_mgl 2016:10:19:21:26:20:SJ VERSION_END
// synthesis VERILOG_INPUT_VERSION VERILOG_2001
// altera message_off 10463



// Copyright (C) 2016 Intel Corporation. All rights reserved.
// Your use of Intel 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 Intel Program License
// Subscription Agreement, the Intel Quartus Prime License Agreement,
// the Intel 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 Intel and sold by Intel or its
// authorized distributors. Please refer to the applicable
// agreement for further details.



//synthesis_resources = lpm_mux 1
//synopsys translate_off
`timescale 1 ps / 1 ps
//synopsys translate_on
module mguu9
(
data,
result,
sel) /* synthesis synthesis_clearbox=1 */;
input [13:0] data;
output [0:0] result;
input [3:0] sel;

wire [0:0] wire_mgl_prim1_result;

lpm_mux mgl_prim1
(
.data(data),
.result(wire_mgl_prim1_result),
.sel(sel));
defparam
mgl_prim1.lpm_size = 14,
mgl_prim1.lpm_type = "LPM_MUX",
mgl_prim1.lpm_width = 1,
mgl_prim1.lpm_widths = 4;
assign
result = wire_mgl_prim1_result;
endmodule //mguu9
//VALID FILE
Loading

0 comments on commit 867c7e4

Please sign in to comment.