minor update

This commit is contained in:
Blaise Tine 2021-04-01 05:20:23 -04:00
parent fff3fb18fb
commit ff75cc9874

View file

@ -98,19 +98,19 @@ module VX_tex_sampler #(
`ifdef DBG_PRINT_TEX
always @(posedge clk) begin
if (req_valid && req_ready) begin
$write("%t: core%0d-sampler-req: wid=%0d, PC=%0h, tmask=%b, filter=%0d, format=%0d, data=",
$write("%t: core%0d-tex-sampler-req: wid=%0d, PC=%0h, tmask=%b, filter=%0d, format=%0d, data=",
$time, CORE_ID, req_wid, req_PC, req_tmask, req_filter, req_format);
`PRINT_ARRAY2D(req_data, 4, `NUM_THREADS);
$write("u0=");
`PRINT_ARRAY2D(req_u0, 4, `NUM_THREADS);
`PRINT_ARRAY1D(req_blend_u, `NUM_THREADS);
$write("v0=");
`PRINT_ARRAY2D(req_v0, 4, `NUM_THREADS);
`PRINT_ARRAY1D(req_blend_v, `NUM_THREADS);
$write("\n");
end
if (rsp_valid && rsp_ready) begin
$write("%t: core%0d-sampler-rsp: wid=%0d, PC=%0h, tmask=%b, data=",
$write("%t: core%0d-tex-sampler-rsp: wid=%0d, PC=%0h, tmask=%b, data=",
$time, CORE_ID, rsp_wid, rsp_PC, rsp_tmask);
`PRINT_ARRAY2D(rsp_data, 4, `NUM_THREADS);
`PRINT_ARRAY1D(rsp_data, `NUM_THREADS);
$write("\n");
end
end