itpp_sci  1.0.0
it++ based simulation framework for scicoslab, scilab and scipy
tf_sci_if.hpp
1 
7 #ifndef TF_SCI_IF_HPP
8 #define TF_SCI_IF_HPP
9 
11 int tf_sci_if_fir();
13 int tf_sci_if_xfir();
15 int tf_sci_if_lfsr();
17 int tf_sci_if_counter();
18 
19 
20 #ifdef SCI_TEST_FIR
21 #define tf_sci_if_fun tf_sci_if_fir
22 #elif SCI_TEST_XFIR
23 #define tf_sci_if_fun tf_sci_if_xfir
24 #elif SCI_TEST_LFSR
25 #define tf_sci_if_fun tf_sci_if_lfsr
26 #elif SCI_TEST_COUNTER
27 #define tf_sci_if_fun tf_sci_if_counter
28 #endif //SCI_TEST_FIR
29 
30 #endif //TF_SCI_IF_HPP
31