summaryrefslogtreecommitdiff
path: root/emulators/simh/patches/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/simh/patches/patch-ac')
-rw-r--r--emulators/simh/patches/patch-ac20
1 files changed, 20 insertions, 0 deletions
diff --git a/emulators/simh/patches/patch-ac b/emulators/simh/patches/patch-ac
new file mode 100644
index 00000000000..42ad0b2dddd
--- /dev/null
+++ b/emulators/simh/patches/patch-ac
@@ -0,0 +1,20 @@
+$NetBSD: patch-ac,v 1.3 2003/09/26 21:36:11 jmmv Exp $
+
+--- scp.c.orig Thu Sep 11 17:24:08 2003
++++ scp.c
+@@ -3731,13 +3731,13 @@ for (i = 0; i < sec; i++) { /* loop *
+ if (tmxr_poll_conn (&sim_con_tmxr) >= 0) { /* poll connect */
+ sim_con_ldsc.rcve = 1; /* rcv enabled */
+ if (i) { /* if delayed */
+- printf ("Running\n"); /* print transition */
++ printf ("Running\r\n"); /* print transition */
+ fflush (stdout); }
+ return SCPE_OK; } /* ready to proceed */
+ c = sim_os_poll_kbd (); /* check for stop char */
+ if ((c == SCPE_STOP) || stop_cpu) return SCPE_STOP;
+ if ((i % 10) == 0) { /* Status every 10 sec */
+- printf ("Waiting for console Telnet connection\n");
++ printf ("Waiting for console Telnet connection\r\n");
+ fflush (stdout); }
+ sim_os_sleep (1); /* wait 1 second */
+ }