25std::ostream&
operator<<(std::ostream& os,
const tlm::tlm_generic_payload& t) {
26 os <<
"CMD:" << cmd_str[t.get_command()] <<
", "
27 <<
"ADDR:0x" << std::hex << t.get_address() <<
", TXLEN:0x" << t.get_data_length();
30 <<
"PROT:0x" << std::hex << static_cast<unsigned>(e->get_protection()) <<
"NSE:" << (e->is_nse() ?
"True" :
"False");
32 os <<
" [ptr:" << &t <<
"]";