• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Logic Design
  3. verilog . D-latch with memory.

Stats

  • Locked Locked
  • Replies 2
  • Subscribers 64
  • Views 15781
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

verilog . D-latch with memory.

dvdeepak
dvdeepak over 15 years ago
Hi
can any one help me for the module and testbench of D-latch with memory.in this file attatched the figure has rd/wrd and clk are inputs and data is an inout. if rd/wrb is low then flip-flop is in write mode ;data are an input line;data on data line are written into latch when clk is positive. when rd/wrb is high , flip-flop is in read mode, data stored in latch are made available on data line..I tried alot but couldn't get it done.Please help.

Thanx.
  • dlatch with memory.PNG
  • View
  • Hide
  • Cancel
Parents
  • dvdeepak
    dvdeepak over 15 years ago

     thanx for ur reply sir but could you plz tell me whts wrong with the 2 methods tht i tried and are not working.

    1st method
    module Dlatchwithmemnew2(q, data, rw,clk);   ///////// its not working , data and q are giving X as ouput
        output q;
        inout data;
        input rw,clk;
         wire en,qb;
         reg d;
         reg data_out;
         wire data_in=data;   /// i tried to put the data input into data_in
    Dlatch g1(q,qb,d,en); //// its a D latch with output q and qb

    assign data=(rw==1)?data_out:data_in;  /// to use the inout data
    assign en=(rw==0)?clk:1'b1; //// if rw=1 then clk will always be 1 so tht when q wil b given as input to D-latch again and will b written into it


      always @( clk, rw , data, q, data_in) begin
        if (rw==1)
         begin
         data_out=q;   /// output of d-latch is given into data_out
          d=q;                 /// q will be given as input to d-latch again
      end
      else
      begin
      data_out=q;          
      d=data_in;            /// data_in will be given as input to d-latch
      end
      end
     
     
    endmodule


    2nd method tht i tried is .. data is not giving proper output even by using some temp_data as reg and then substituting its value into inout data
    module main(data, rw,ck);
        inout data;
        input rw,ck;  ///////////if we run the synthesis of main then there is error in tri0 and tri1
    wire wren,q,qb;//////////////but its test runs absolutely fine only by making the "data" as reg in test
    tri0 en;//////////////////// not as a wire
    tri1 d;/////////////////////whereas it should be wire coz of being an INOUT
    not(wren,rw);
    bufif1(d,data,wren);
    bufif0(en,ck,rw);
    Dlatch g1(q,qb,d,en);
    bufif1 (data,q,rw);


    endmodule



    Regards,
    Deepak.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • dvdeepak
    dvdeepak over 15 years ago

     thanx for ur reply sir but could you plz tell me whts wrong with the 2 methods tht i tried and are not working.

    1st method
    module Dlatchwithmemnew2(q, data, rw,clk);   ///////// its not working , data and q are giving X as ouput
        output q;
        inout data;
        input rw,clk;
         wire en,qb;
         reg d;
         reg data_out;
         wire data_in=data;   /// i tried to put the data input into data_in
    Dlatch g1(q,qb,d,en); //// its a D latch with output q and qb

    assign data=(rw==1)?data_out:data_in;  /// to use the inout data
    assign en=(rw==0)?clk:1'b1; //// if rw=1 then clk will always be 1 so tht when q wil b given as input to D-latch again and will b written into it


      always @( clk, rw , data, q, data_in) begin
        if (rw==1)
         begin
         data_out=q;   /// output of d-latch is given into data_out
          d=q;                 /// q will be given as input to d-latch again
      end
      else
      begin
      data_out=q;          
      d=data_in;            /// data_in will be given as input to d-latch
      end
      end
     
     
    endmodule


    2nd method tht i tried is .. data is not giving proper output even by using some temp_data as reg and then substituting its value into inout data
    module main(data, rw,ck);
        inout data;
        input rw,ck;  ///////////if we run the synthesis of main then there is error in tri0 and tri1
    wire wren,q,qb;//////////////but its test runs absolutely fine only by making the "data" as reg in test
    tri0 en;//////////////////// not as a wire
    tri1 d;/////////////////////whereas it should be wire coz of being an INOUT
    not(wren,rw);
    bufif1(d,data,wren);
    bufif0(en,ck,rw);
    Dlatch g1(q,qb,d,en);
    bufif1 (data,q,rw);


    endmodule



    Regards,
    Deepak.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information