change: remove DAC strobing generation. RTL+TB complete

This commit is contained in:
Zer0Nu11
2026-06-10 11:59:36 +03:00
parent d90167984a
commit 6542995930
2 changed files with 3 additions and 14 deletions

View File

@ -15,7 +15,6 @@ module generator
input [15:0] pulse_num,
input request,
output dac_wrt,
output logic [DATA_WIDTH-1:0] dac_out,
output logic done
);
@ -85,11 +84,4 @@ module generator
end
end
end
// Gated DAC write signal from DAC clock. Needed for posedge
OBUF OBUF_pulse_clk (
.I(clk_dac & enable),
.O(dac_wrt)
);
endmodule