org.opencores.structure
Class NetGlobal

java.lang.Object
  |
  +--org.opencores.structure.Net
        |
        +--org.opencores.structure.NetGlobal

public class NetGlobal
extends Net

Global net, that is accessible from everywhere (e.g. GND, VCC, CLK). This net is not placed nor routed in standard P&R process.


Field Summary
static int GCLK0
          CLK signal type
static int GCLK1
          CLK signal type
static int GND
          GND generator node type
static int GRST
          async RST signal type
static int GSET
          async SET signal type
static int NUM_GLOBAL
          number of global net types
static int PIO_CLK
          PIO_CLK signal
 int type
          this instance type
static java.lang.String[] typeName
          NodeGlobal names
static int VCC
          VCC generator node type
 
Fields inherited from class org.opencores.structure.Net
cost, inputs, link, name, output
 
Constructor Summary
NetGlobal(int type)
          Construct new special node.
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Field Detail

GND

public static final int GND
GND generator node type

VCC

public static final int VCC
VCC generator node type

GCLK0

public static final int GCLK0
CLK signal type

GCLK1

public static final int GCLK1
CLK signal type

GRST

public static final int GRST
async RST signal type

GSET

public static final int GSET
async SET signal type

PIO_CLK

public static final int PIO_CLK
PIO_CLK signal

NUM_GLOBAL

public static final int NUM_GLOBAL
number of global net types

typeName

public static final java.lang.String[] typeName
NodeGlobal names

type

public int type
this instance type
Constructor Detail

NetGlobal

public NetGlobal(int type)
Construct new special node.
Parameters:
type - node type (use NetGlobal.*)
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class Net