]> Joshua Wise's Git repositories - firearm.git/commitdiff
merge memory
authorChristopher Lu <lu@stop.hsd1.pa.comcast.net>
Tue, 6 Jan 2009 08:20:31 +0000 (03:20 -0500)
committerChristopher Lu <lu@stop.hsd1.pa.comcast.net>
Tue, 6 Jan 2009 08:20:31 +0000 (03:20 -0500)
1  2 
Memory.v

diff --cc Memory.v
index 3f82a5419cafbd21ec1a2e2b9d19ed81e132153d,e10a2e7b8bc611147839d5a5ead12889b63995bd..0b27485b919ef8851763a6ee18522f58ef2783a1
+++ b/Memory.v
@@@ -37,11 -37,11 +37,12 @@@ module Memory
        output reg [31:0] out_write_data = 32'hxxxxxxxx
        );
  
 -      reg [31:0] addr, raddr;
 -      reg next_notdone, next_inc_next;
 +      reg [31:0] addr, raddr, next_regdata;
 +      reg [3:0] next_regsel, cur_reg, prev_reg;
 +      reg next_writeback, next_notdone, next_inc_next;
        reg [31:0] align_s1, align_s2, align_rddata;
  
+       wire next_outbubble;    
        wire next_write_reg;
        wire [3:0] next_write_num;
        wire [31:0] next_write_data;
                next_write_num = write_num;
                next_write_data = write_data;
                next_inc_next = 1'b0;
+               next_outbubble = inbubble;
                outstall = 1'b0;
 -              
 +              next_regs = 16'b0;
 +              next_started = started;
 +
                casez(insn)
                `DECODE_LDRSTR_UNDEFINED: begin end
                `DECODE_LDRSTR: begin
This page took 0.022804 seconds and 4 git commands to generate.