public PacketFifo(EOSS3_PacketFIFO parent, string name, int size) : base(parent, name, size)
 {
     fifo = new Queue <UInt32>();
 }
 public PacketFifoSwitchable(EOSS3_PacketFIFO pf, string name, int size) : base(pf, name, size)
 {
     pf3BufferMode = new CircularBuffer <UInt16>(size);
     pf3QueueMode  = new Queue <UInt16>(size);
 }
 public PacketFifoBase(EOSS3_PacketFIFO parent, string name, int size)
 {
     this.parent = parent;
     this.name   = name;
     this.size   = size;
 }