sim: rx: add missing break to memory write
authorMike Frysinger <vapier@gentoo.org>
Thu, 21 Dec 2023 06:36:40 +0000 (01:36 -0500)
committerMike Frysinger <vapier@gentoo.org>
Thu, 21 Dec 2023 06:44:13 +0000 (01:44 -0500)
It doesn't seem like we want to keep executing the next block of code
after processing the request.

sim/rx/mem.c

index 2cba4cb..83e2302 100644 (file)
@@ -324,6 +324,7 @@ mem_put_byte (unsigned int address, unsigned char value)
          halt_pipeline_stats ();
        else
          reset_pipeline_stats ();
+       break;
       }
 #endif