always @(posedge clk) begin : badregwrite
    if (reset) begin
        this <= 8'b00000000;
        that <= 8'b00000000;
    end // if (reset)
    if (wr) begin
        this <= foo;
        that <= bar;
    end // if (wr)
end // process badregwrite