Skip to content

Commit

Permalink
graphics 64-bit support fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tinebp committed Jul 25, 2024
1 parent 1f53def commit a63428a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/rtl/raster/VX_raster_csr.sv
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ module VX_raster_csr import VX_raster_pkg::*; #(

for (genvar i = 0; i < NUM_LANES; ++i) begin
wire [`VX_CSR_RASTER_COUNT-1:0][31:0] indexable_rdata = rdata[raster_csr_if.read_pid * NUM_LANES + i];
assign raster_csr_if.read_data[i] = indexable_rdata[csr_addr];
assign raster_csr_if.read_data[i] = `XLEN'(indexable_rdata[csr_addr]);
end

`UNUSED_VAR (write_uuid)
Expand Down

0 comments on commit a63428a

Please # to comment.