46a47
> #include "mem/packet.hh"
84c85
< const NetDest& routing_table_entry,
---
> const NetDest& routing_table_entry,
96a98,107
> /*
> * Virtual functions for functionally reading and writing packets in
> * the network. Each network needs to implement these for functional
> * accesses to work correctly.
> */
> virtual bool functionalRead(Packet *pkt)
> { fatal("Functional read not implemented.\n"); }
> virtual uint32_t functionalWrite(Packet *pkt)
> { fatal("Functional write not implemented.\n"); }
>