I've been studying Verilog for a while and recently came across a kind of statement that I do not understand. Here is an example:
reg s_axis_data_tready_reg = 1'b0, s_axis_data_tready_next;
Looks like a concatenation but doesn't have the curly brackets surrounding the two items separated by a comma. This statement compiles with no error. What does this statement do?