aboutsummaryrefslogtreecommitdiffstats
path: root/tests/arch/common/dynamic_part_select/reset_test.v
blob: 5a3a9b9fc97e4b06ae7b496a4959c4bfbab60819 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module reset_test #(parameter WIDTH=256, SELW=2)
   (input                  clk ,
    input [9:0] 	   ctrl ,
    input [15:0] 	   din ,
    input [SELW-1:0] 	   sel ,
    input wire 		   reset,
    output reg [WIDTH-1:0] dout);
   
   reg [5:0] 		   i;
   wire [SELW-1:0] 	   rval = {reset, {SELW-1{1'b0}}};
   localparam SLICE = WIDTH/(SELW**2);
   // Doing exotic reset. masking 2 LSB bits to 0, 6 MSB bits to 1 for
   // whatever reason.
   always @(posedge clk) begin
      if (reset) begin: reset_mask
         for (i = 0; i < 16; i=i+1) begin
            dout[i*rval+:SLICE] <= 32'hDEAD;
         end
      end
      //else begin
      dout[ctrl*sel+:SLICE] <= din;
      //end
   end
endmodule