From: Michael Boehmer Date: Mon, 11 Jul 2022 10:05:45 +0000 (+0200) Subject: typos X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=49eaaf460dc84ada02902dfac8561dc29a936ded;p=trbnet.git typos --- diff --git a/gbe_trb/base/trb_net16_gbe_frame_receiver.vhd b/gbe_trb/base/trb_net16_gbe_frame_receiver.vhd index 030767d..0fc01b8 100644 --- a/gbe_trb/base/trb_net16_gbe_frame_receiver.vhd +++ b/gbe_trb/base/trb_net16_gbe_frame_receiver.vhd @@ -635,7 +635,7 @@ begin if ( (RESET = '1') or (delayed_frame_valid_q = '1') ) then rx_bytes_ctr <= x"0001"; elsif( fifo_wr_en = '1' ) then - rx_bytes_ctr <= rx_bytes_ctr + x"1"; + rx_bytes_ctr <= rx_bytes_ctr + 1; end if; end if; end process THE_RX_BYTES_CTR_PROC; @@ -646,7 +646,7 @@ begin if ( RESET = '1' ) then error_frames_ctr <= (others => '0'); elsif( MAC_RX_ER_IN = '1' ) then - error_frames_ctr <= error_frames_ctr + x"1"; + error_frames_ctr <= error_frames_ctr + 1; end if; end if; end process THE_ERROR_FRAMES_CTR_PROC; @@ -660,7 +660,7 @@ begin if ( RESET = '1' ) then dbg_rec_frames <= (others => '0'); elsif( MAC_RX_EOF_IN = '1' ) then - dbg_rec_frames <= dbg_rec_frames + x"1"; + dbg_rec_frames <= dbg_rec_frames + 1; end if; end if; end process THE_RECEIVED_FRAMES_CTR; @@ -671,7 +671,7 @@ begin if ( RESET = '1' ) then dbg_drp_frames <= (others => '0'); elsif( (filter_current_state = DECIDE) and (frame_type_valid = '0') ) then - dbg_drp_frames <= dbg_drp_frames + x"1"; + dbg_drp_frames <= dbg_drp_frames + 1; end if; end if; end process THE_DROPPED_FRAMES_CTR; @@ -688,7 +688,7 @@ begin mon_rec_bytes <= (others => '0'); elsif( fifo_wr_en = '1' ) then mon_rec_bytes <= mon_rec_bytes + x"1"; - else + else mon_rec_bytes <= mon_rec_bytes; end if; end if;