axi_hdmi_tx: Fix assignment type

The general rule of thumb is to use nonblocking assignments for
sequential always blocks.
main
Istvan Csomortani 2017-04-21 09:06:54 +03:00
parent 6d72ce800c
commit 50e6fac5dd
1 changed files with 11 additions and 11 deletions

View File

@ -459,12 +459,12 @@ module axi_hdmi_tx_core #(
always @(posedge hdmi_clk) begin
hdmi_36_hsync = hdmi_clip_hs_d;
hdmi_36_vsync = hdmi_clip_vs_d;
hdmi_36_data_e = hdmi_clip_de_d;
hdmi_36_data[35:24] = {hdmi_clip_data[23:16], hdmi_clip_data[23:20]};
hdmi_36_data[23:12] = {hdmi_clip_data[15: 8], hdmi_clip_data[15:12]};
hdmi_36_data[11: 0] = {hdmi_clip_data[ 7: 0], hdmi_clip_data[ 7: 4]};
hdmi_36_hsync <= hdmi_clip_hs_d;
hdmi_36_vsync <= hdmi_clip_vs_d;
hdmi_36_data_e <= hdmi_clip_de_d;
hdmi_36_data[35:24] <= {hdmi_clip_data[23:16], hdmi_clip_data[23:20]};
hdmi_36_data[23:12] <= {hdmi_clip_data[15: 8], hdmi_clip_data[15:12]};
hdmi_36_data[11: 0] <= {hdmi_clip_data[ 7: 0], hdmi_clip_data[ 7: 4]};
hdmi_24_hsync <= hdmi_clip_hs_d;
hdmi_24_vsync <= hdmi_clip_vs_d;