24 lines
672 B
Verilog
24 lines
672 B
Verilog
//-------------------------------------------
|
|
// FPGA Synthesizable Verilog Netlist
|
|
// Description: Look-Up Tables
|
|
// Author: Xifan TANG
|
|
// Organization: EPFL/IC/LSI
|
|
// Date: Thu Nov 15 14:26:09 2018
|
|
|
|
//-------------------------------------------
|
|
//----- Time scale -----
|
|
`timescale 1ns / 1ps
|
|
|
|
//-----LUT module, verilog_model_name=lut6 -----
|
|
module lut6 (input wire [0:5] in,
|
|
output wire [0:0] out,
|
|
input wire [0:63] sram_out,
|
|
input wire [0:63] sram_outb
|
|
);
|
|
wire [0:5] in_b;
|
|
assign in_b = ~ in;
|
|
lut6_mux lut6_mux_0_ ( sram_out, out, in, in_b);
|
|
endmodule
|
|
//-----END LUT module, verilog_model_name=lut6 -----
|
|
|