예제 #1
0
template<> TIterator3<sc_type, sc_type, Addr>::TIterator3(MemoryContext const & context, sc_type const & p1, sc_type const & p2, Addr const & p3)
{
    mIterator = sc_iterator3_a_a_f_new(context.getRealContext(), p1, p2, p3.mRealAddr);
}
예제 #2
0
template<> TIterator5<sc_type, sc_type, Addr, sc_type, sc_type>::TIterator5(MemoryContext const & context, sc_type const & p1, sc_type const & p2, Addr const & p3, sc_type const & p4, sc_type const & p5)
{
    mIterator = sc_iterator5_a_a_f_a_a_new(context.getRealContext(), p1, p2, p3.mRealAddr, p4, p5);
}
예제 #3
0
template<> TIterator3<Addr, sc_type, sc_type>::TIterator3(MemoryContext const & context, Addr const & p1, sc_type const & p2, sc_type const & p3)
{
    mIterator = sc_iterator3_f_a_a_new(context.getRealContext(), p1.mRealAddr, p2, p3);
}