dpddl020h.vmd 3.51 KB

/**************************************************************/
/*    Verilog module of datapath cell dpddl020h              */
/*    Designed by  Chunling Liu    Compass    July 17, 92     */
/*    Designed by  Linda J. Xu     Compass    Nov. 23, 1992   */
/*    Changed  by  Matt Rohm       SGI        May  27, 1994   */
/*    (changed to intra-assignment delays)                    */
/*                                                            */
/*    The following is the port description                   */
/*    Data ports                                              */
/*        IN    : the input port                               */
/*        A    : the tap output port                           */
/*        B    : the tap output port                           */
/*        OUT    : the output port                              */
/*    Control ports                                           */
/*        INST_CP    : the clock signal                       */
/*        CDN        : the activ-low clear signal             */
/*    Parameters                                              */
/*        WORDSIZE  : the word size of the datapath cell      */
/*        Number_Of_Delays   : the col size of the datapath cell */
/*        TapLocationsA      : the tap A position*/
/*        TapLocationsB      : the tap B position*/
/*        DELAY     : the delay time from input to output     */
/*                                                            */
/*    When the clock signal changes from unknown to 1 or      */
/*        from 0 to unknown while the clear signal is high,   */
/*        the output will be unknown.                         */
/**************************************************************/
module dpddl020h(IN, A, B, OUT, INST_CP, CDN);

  parameter WORDSIZE = 8, Number_of_delays = 3, TapLocationA = 2,
            TapLocationB = 1, DELAY = 10, BF = 1;
  input  [WORDSIZE-1:0] IN;
  output [WORDSIZE-1:0] A;
  output [WORDSIZE-1:0] B;
  output [WORDSIZE-1:0] OUT;
  input  INST_CP, CDN;

  reg    [WORDSIZE-1:0] A;
  reg    [WORDSIZE-1:0] B;
  reg    [WORDSIZE-1:0] OUT;
  reg    [WORDSIZE-1:0] rgf[Number_of_delays-1:0];
  reg    flag;


  initial OUT = {WORDSIZE{1'bx}};
  initial flag = 1'b0;

  function [WORDSIZE-1:0] dff;
  input  [WORDSIZE-1:0] d;
  integer i;

    begin
      if (!CDN)
        for (i = 0; i< Number_of_delays; i=i+1)
           begin
              rgf[i] = {WORDSIZE{1'b0}};
           end
      else if (CDN)
        begin
          for (i = Number_of_delays-1; i>= 1; i=i-1)
            begin
              rgf[i] = rgf[i-1];
            end
          rgf[0] = d;
        end
      dff = rgf[Number_of_delays-1];
    end
  endfunction

  always @CDN
    if (!CDN)
      begin
        assign OUT = {WORDSIZE{1'b0}};
        assign A = {WORDSIZE{1'b0}};
        assign B = {WORDSIZE{1'b0}};
      end
    else if (CDN)
      begin
        deassign OUT;
        deassign A;
        deassign B;
      end
    else
      begin
        assign OUT = {WORDSIZE{1'b x}};
        assign A = {WORDSIZE{1'b x}};
        assign B = {WORDSIZE{1'b x}};
      end

  always @ ( posedge INST_CP )
    if ((INST_CP === 1'b1) && (flag === 1'b0))
      begin
        OUT = #DELAY dff(IN);
        A = #DELAY rgf[TapLocationA-1];
        B = #DELAY rgf[TapLocationB-1];
      end
    else
      begin
        OUT = {WORDSIZE{1'b x}};
        A = {WORDSIZE{1'b x}};
        B = {WORDSIZE{1'b x}};
        flag = 1'b1;
      end

  always @ (negedge INST_CP)
    if (INST_CP === 1'b0)
      flag = 1'b0;
    else
      flag = 1'b1;

endmodule