// ============================================================== // Vivado(TM) HLS - High-Level Synthesis from C, C++ and SystemC v2019.2.1 (64-bit) // Copyright 1986-2019 Xilinx, Inc. All Rights Reserved. // ============================================================== #ifndef __fw_binned_sitodp_ncg__HH__ #define __fw_binned_sitodp_ncg__HH__ #include "ACMP_sitodp.h" #include template< int ID, int NUM_STAGE, int din0_WIDTH, int dout_WIDTH> SC_MODULE(fw_binned_sitodp_ncg) { sc_core::sc_in_clk clk; sc_core::sc_in reset; sc_core::sc_in ce; sc_core::sc_in< sc_dt::sc_lv > din0; sc_core::sc_out< sc_dt::sc_lv > dout; ACMP_sitodp ACMP_sitodp_U; SC_CTOR(fw_binned_sitodp_ncg): ACMP_sitodp_U ("ACMP_sitodp_U") { ACMP_sitodp_U.clk(clk); ACMP_sitodp_U.reset(reset); ACMP_sitodp_U.ce(ce); ACMP_sitodp_U.din0(din0); ACMP_sitodp_U.dout(dout); } }; #endif //