Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Shift of 64 entries having 16 bits

Status
Not open for further replies.

usamaaslam1

Newbie level 6
Joined
Aug 21, 2009
Messages
11
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,355
Hi,

i have implemented a memory of 16*64
i need 2 shift the values i did it by using case statements
sme line are as follow

Code:
 case (addr)

      64'd59:
      begin
         mem[59] <= `D dinput;
         mem[60] <= `D mem[59];
         mem[61] <= `D mem[60];
         mem[62] <= `D mem[61];
         mem[63] <= `D mem[62];
    end        
               
               
      64'd60:
      begin
         mem[60] <= `D dinput;
         mem[61] <= `D mem[60];
         mem[62] <= `D mem[61];
         mem[63] <= `D mem[62];
    end       
              
      64'd61: 
      begin   
         mem[61] <= `D dinput;
         mem[62] <= `D mem[61];
         mem[63] <= `D mem[62];
    end         

      64'd62:
      begin
         mem[62] <= `D dinput;
         mem[63] <= `D mem[62];
    end         
endcase

there are 64 states. i am facing problem regarding the critical path its over 5 ns i want to make it below 5 ns

presently the implementaion is single cycle. cycles can be increased.

anyone having any idea plz help
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top