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;
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;
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;
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;
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;