mirror of
				https://github.com/openhwgroup/cvw
				synced 2025-02-11 06:05:49 +00:00 
			
		
		
		
	changed shifter source select signal name
This commit is contained in:
		
							parent
							
								
									30ef1ac9e3
								
							
						
					
					
						commit
						82059fba67
					
				@ -56,6 +56,9 @@ module alu #(parameter WIDTH=32) (
 | 
			
		||||
  logic             Rotate;
 | 
			
		||||
  logic [WIDTH:0]   shA;                                                                    // XLEN+1 bit input source to shifter
 | 
			
		||||
  logic [WIDTH-1:0] rotA;                                                                   // XLEN bit input source to shifter
 | 
			
		||||
  logic [1:0]       shASelect;                                                              // select signal for shifter source generation mux 
 | 
			
		||||
 | 
			
		||||
  assign shASelect = {W64,SubArith};
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
  if (`ZBS_SUPPORTED) begin: zbsdec
 | 
			
		||||
@ -67,7 +70,7 @@ module alu #(parameter WIDTH=32) (
 | 
			
		||||
  // Sign/Zero extend mux
 | 
			
		||||
  if (WIDTH == 64) begin // rv64 must handle word s/z extensions
 | 
			
		||||
    always_comb 
 | 
			
		||||
      case ({W64, SubArith})
 | 
			
		||||
      case (shASelect)
 | 
			
		||||
        2'b00: shA = {{1'b0}, A};
 | 
			
		||||
        2'b01: shA = {A[63], A};
 | 
			
		||||
        2'b10: shA = {{33'b0}, A[31:0]};
 | 
			
		||||
 | 
			
		||||
@ -198,6 +198,7 @@ module controller(
 | 
			
		||||
  assign SFenceVmaD = PrivilegedD & (InstrD[31:25] ==  7'b0001001);
 | 
			
		||||
  assign FenceD = SFenceVmaD | FenceXD; // possible sfence.vma or fence.i
 | 
			
		||||
  
 | 
			
		||||
  //NOTE: Move the B conditional logic into bctrl
 | 
			
		||||
  if (`ZBA_SUPPORTED) begin
 | 
			
		||||
    // ALU Decoding is more comprehensive when ZBA is supported. Only conflict with Funct3 is with slt instructionsb
 | 
			
		||||
    assign sltD = (Funct3D == 3'b010 & (~BSelectD[3]));
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user