From b6a5f98631ccb6814df3181514fa804c9393fc0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Sat, 17 Oct 2015 11:30:09 +0000 Subject: [PATCH] fix Atari specific special character codes --- BaS_gcc/tos/jtagwait/sources/jtagwait.c | 2 +- BaS_gcc/tos/vmem_test/sources/vmem_test.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BaS_gcc/tos/jtagwait/sources/jtagwait.c b/BaS_gcc/tos/jtagwait/sources/jtagwait.c index ec8324d..f9426bc 100644 --- a/BaS_gcc/tos/jtagwait/sources/jtagwait.c +++ b/BaS_gcc/tos/jtagwait/sources/jtagwait.c @@ -87,7 +87,7 @@ void wait_for_jtag(void) int main(int argc, char *argv[]) { printf("\033E\r\nFPGA JTAG configuration support\r\n"); - printf("\a9 2014 M. Fr\f6schle\r\n"); + printf("\xbd 2014 M. Fr\x94schle\r\n"); printf("You may now savely load a new FPGA configuration through the JTAG interface\r\n" "and your Firebee will reboot once finished using that new configuration.\r\n"); diff --git a/BaS_gcc/tos/vmem_test/sources/vmem_test.c b/BaS_gcc/tos/vmem_test/sources/vmem_test.c index b23795c..deeadf3 100644 --- a/BaS_gcc/tos/vmem_test/sources/vmem_test.c +++ b/BaS_gcc/tos/vmem_test/sources/vmem_test.c @@ -235,9 +235,9 @@ void wait_for_jtag(void) int main(int argc, char *argv[]) { - printf("\033E\r\nFPGA JTAG configuration support\r\n"); + printf("FPGA JTAG configuration support\r\n"); printf("test FPGA DDR RAM controller\r\n"); - printf(" 2014 M. F\f6schle\r\n"); + printf("\xbd 2014 M. F\x94schle\r\n"); printf("You may now savely load a new FPGA configuration through the JTAG interface\r\n" "and your Firebee will reboot once finished using that new configuration.\r\n");