From c5715676603010219415aaafa5ff95cac2c7fc9d Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Sat, 20 Jun 2020 13:41:39 -0400 Subject: [PATCH] emul: make verbose staging the default I always keep it on myself. I can imagine it's especially useful to newcomers. --- emul/stage.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emul/stage.c b/emul/stage.c index c0f3af4..0920616 100644 --- a/emul/stage.c +++ b/emul/stage.c @@ -42,8 +42,8 @@ static uint8_t iord_stdio() static void iowr_stdio(uint8_t val) { - // uncomment when you need to debug staging - // putc(val, stderr); + // comment if you don't like verbose staging output + putc(val, stderr); } static void iowr_here(uint8_t val)