From d8d687ad8052809f66c0b5a36d4ca74d0a3b202c Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Wed, 7 Dec 2022 20:06:56 -0600 Subject: Make --no-tty optional in sim --- sim/gdbstub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sim/gdbstub.py') diff --git a/sim/gdbstub.py b/sim/gdbstub.py index c01a4a7..8d20f39 100644 --- a/sim/gdbstub.py +++ b/sim/gdbstub.py @@ -1,6 +1,7 @@ import sys, socket cycles = None +enable_tty = True start_halted = True def init(): @@ -77,7 +78,6 @@ def halt(): elif data == b's': return 'step' else: - print('unhandled packet:', data, file=sys.stderr) out = b'' reply(out) -- cgit v1.2.3