tillitis-key/hw/application_fpga/core/trng/tb/SB_LUT4.v

30 lines
678 B
Verilog
Raw Normal View History

//======================================================================
//
// SB_LUT4.v
// ---------
// Simulation model of the SB_LUT4 macro used to buil the sim target.
//
//
// Author: Joachim Strombergson
// Copyright (C) 2023 - Tillitis AB
// SPDX-License-Identifier: GPL-2.0-only
//
//======================================================================
`default_nettype none
module SB_LUT4 (
input wire I0,
output wire O
);
parameter LUT_INIT = 16'h0;
assign O = ~I0;
endmodule // SB_LUT4
//======================================================================
// EOF SB_LUT4.v
//======================================================================