// ============================================================== // 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_fpext_3hbi__HH__ #define __fw_binned_fpext_3hbi__HH__ #include "ACMP_fpext_comb.h" #include template< int ID, int NUM_STAGE, int din0_WIDTH, int dout_WIDTH> SC_MODULE(fw_binned_fpext_3hbi) { sc_core::sc_in< sc_dt::sc_lv > din0; sc_core::sc_out< sc_dt::sc_lv > dout; ACMP_fpext_comb ACMP_fpext_comb_U; SC_CTOR(fw_binned_fpext_3hbi): ACMP_fpext_comb_U ("ACMP_fpext_comb_U") { ACMP_fpext_comb_U.din0(din0); ACMP_fpext_comb_U.dout(dout); } }; #endif //