add more comments

This commit is contained in:
Angelo Jacobo 2024-03-28 14:21:16 +08:00 committed by GitHub
parent 117a6dbdec
commit b308e507d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -913,7 +913,7 @@ module ddr3_controller #(
<< (data_start_index[index]>>3)) | unaligned_dm[index]; << (data_start_index[index]>>3)) | unaligned_dm[index];
/* verilator lint_on WIDTH */ /* verilator lint_on WIDTH */
end end
// stage2 can have multiple pipelined stages inside it // stage2 can have multiple pipelined stages inside it which acts as delay before issuing the write data (after issuing write command)
for(index = 0; index < STAGE2_DATA_DEPTH-1; index = index+1) begin for(index = 0; index < STAGE2_DATA_DEPTH-1; index = index+1) begin
stage2_data[index+1] <= stage2_data[index]; stage2_data[index+1] <= stage2_data[index];
stage2_dm[index+1] <= stage2_dm[index]; stage2_dm[index+1] <= stage2_dm[index];