Merge marina project in subdirectory marina/
[fleet.git] / marina / testCode / edu / berkeley / fleet / two / PercolatedPort.java
1 package edu.berkeley.fleet.two;
2
3 /**
4  *  A PercolatedPort is a connection to a top-level pin; it is
5  *  propagated up or down the hierarchy
6  */
7 public class PercolatedPort {
8     public static enum PortType { UP, DOWN, INOUT };
9     public final String name;
10     public final int width;
11     public final PortType type;
12     public PercolatedPort(String name, int width, PortType type) {
13         this.name = name;
14         this.width = width;
15         this.type = type;
16     }
17 }