Example #1
0
 handler_entry_write_passthrough(address_space space, memory_passthrough_handler mph, handler_entry_write <int_Width, int_AddrShift> next) : base(space, handler_entry.F_PASSTHROUGH)
 {
     m_mph = mph; m_next = next;  next.ref_(); mph.add_handler(this);
 }
Example #2
0
        handler_entry_write <int_Width, int_AddrShift> m_next;  //handler_entry_write<Width, AddrShift> *m_next;


        handler_entry_write_passthrough(address_space space, memory_passthrough_handler mph) : base(space, handler_entry.F_PASSTHROUGH)
        {
            m_mph = mph; m_next = null;
        }