From b45e249a08e0bbf7f5ccf3f5e2c4c138e5b7eddb Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Sun, 10 Jan 2021 01:17:03 +0700 Subject: [PATCH] Remove mention of TRASE. (#197) This macro no longer exists and one message had it as a typo. --- bin/compile-flags | 1 - src/tty.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/compile-flags b/bin/compile-flags index bb72fdd..83931ef 100755 --- a/bin/compile-flags +++ b/bin/compile-flags @@ -54,7 +54,6 @@ DEBUG Used when debugging, to enclose trace and dump code. dbprint.h for the definition. TRACE TRACE2 -TRASE OPTRACE If true, the dispatch loop prints the PC & opcode each time thru FNTRACE If true, you see the name of each function called. STACKCHECK If true, you see unusual cases of stack manipulation diff --git a/src/tty.c b/src/tty.c index e3a193f..444c5f5 100644 --- a/src/tty.c +++ b/src/tty.c @@ -185,7 +185,7 @@ void tty_setbaudrate() { int tty_baudtosymbol(short aBaud) { #ifdef TRACE - printf("TRASE: tty_baudtosymbol(%x)\n", aBaud); + printf("TRACE: tty_baudtosymbol(%x)\n", aBaud); #endif if (aBaud == 0) return (B50);