bitser.primatives.slice
Class TapSubtractorSlice

java.lang.Object
  |
  +--com.xilinx.JBits.CoreTemplate.RTPCore
        |
        +--bitser.primatives.slice.TapSubtractorSlice

public class TapSubtractorSlice
extends com.xilinx.JBits.CoreTemplate.RTPCore

Implements a subtraction for two LSB (Least Significant Bit) first, signed, serial data inputs.

The control signal must be asserted HI during the LSB to ensure proper reseting of the core for the next data word.

Copyright (c) 2002 by Alex Carreira

Version:
2.0 Added separate connect method for prioritizing routing
Author:
Alex Carreira
See Also:
Serialized Form

Constructor Summary
TapSubtractorSlice(java.lang.String instanceName, com.xilinx.JBits.CoreTemplate.Net clk, com.xilinx.JBits.CoreTemplate.Net control, com.xilinx.JBits.CoreTemplate.Net _AIn, com.xilinx.JBits.CoreTemplate.Net _BIn, com.xilinx.JBits.CoreTemplate.Net difOut)
          Creates an instance of a TapSubtractorSlice.
 
Method Summary
static int calcHeight()
          Compute and return the height of a TapSubtractorSlice core.
static int calcHeightGran()
          Compute and return the vertical granularity of a TapSubtractorSlice core.
static int calcWidth()
          Compute and return the width of a TapSubtractorSlice core.
static int calcWidthGran()
          Compute and return the horizontal granularity of a TapSubtractorSlice core.
 void connect()
          Connect the internal nets of the core.
static int getCtrlFO()
           
static int getSerDataFO()
           
 void implement()
          Implement this TapSubtractorSlice instance.
 
Methods inherited from class com.xilinx.JBits.CoreTemplate.RTPCore
addChild, addChild, addFixedResource, calcAbsoluteOffset, getChild, getFixedResource, getHeight, getHeight, getHeightGran, getHierName, getName, getParent, getPort, getPort, getRelativeOffset, getTag, getWidth, getWidth, getWidthGran, isProtected, newBus, newBus, newInputPort, newInputPort, newNet, newNet, newNet, newNoConnectBus, newOutputPort, newOutputPort, newPort, newPort, numChildren, numFixedResources, numPorts, removeDescendants, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TapSubtractorSlice

public TapSubtractorSlice(java.lang.String instanceName,
                          com.xilinx.JBits.CoreTemplate.Net clk,
                          com.xilinx.JBits.CoreTemplate.Net control,
                          com.xilinx.JBits.CoreTemplate.Net _AIn,
                          com.xilinx.JBits.CoreTemplate.Net _BIn,
                          com.xilinx.JBits.CoreTemplate.Net difOut)
                   throws com.xilinx.JBits.CoreTemplate.CoreException
Creates an instance of a TapSubtractorSlice.
Parameters:
instanceName - The name assigned to this TapSubtractorSlice instance.
clk - The external net to be connected to the clock port.
control - The external net to be connected to the control port.
AIn - The external net to be connected to the A in port.
BIn - The external net to be connected to the B in port.
difOut - The external net to be connected to the dif out port. (Is AIn - BIn).
Throws:
Throws - a CoreException when things go wrong.
Method Detail

calcHeightGran

public static int calcHeightGran()
Compute and return the vertical granularity of a TapSubtractorSlice core.

calcWidthGran

public static int calcWidthGran()
Compute and return the horizontal granularity of a TapSubtractorSlice core.

calcHeight

public static int calcHeight()
Compute and return the height of a TapSubtractorSlice core.

calcWidth

public static int calcWidth()
Compute and return the width of a TapSubtractorSlice core.

getSerDataFO

public static int getSerDataFO()
Returns:
The fan-out that this core imposes on the serial data input nets.

getCtrlFO

public static int getCtrlFO()
Returns:
The fan-out that this core imposes on the control input net.

implement

public final void implement()
                     throws com.xilinx.JBits.CoreTemplate.CoreException
Implement this TapSubtractorSlice instance. WARNING: You must call the connect() method of this core or internal nets will remain unconnected.
Throws:
com.xilinx.JBits.CoreTemplate.CoreException - is thrown for error occurences.

connect

public void connect()
             throws com.xilinx.JBits.CoreTemplate.CoreException
Connect the internal nets of the core. This separate method allows the routing to be prioritized.
Throws:
com.xilinx.JBits.CoreTemplate.CoreException - is thrown for error occurences.