From: Amelia Coutard Date: Mon, 7 Aug 2023 01:21:30 +0000 (+0200) Subject: Made my life easier: removed infinite printing in test programs X-Git-Url: https://git.ameliathe1st.gay/?a=commitdiff_plain;h=a5ff1e5be290d295e0c94eba7b73bae949ea32b2;p=voyage-au-centre-des-fichiers.git Made my life easier: removed infinite printing in test programs --- diff --git a/test_module/src/test.cpp b/test_module/src/test.cpp index 3e545d9..b2973ec 100644 --- a/test_module/src/test.cpp +++ b/test_module/src/test.cpp @@ -31,6 +31,6 @@ extern "C" void _start() { while (true) { yield(); - printstr("Prg 1 again.\n"); + // printstr("Prg 1 again.\n"); } } diff --git a/test_module_2/src/test.cpp b/test_module_2/src/test.cpp index f4d1791..7eeb486 100644 --- a/test_module_2/src/test.cpp +++ b/test_module_2/src/test.cpp @@ -27,7 +27,7 @@ extern "C" void _start() { while (true) { yield(); - printstr("Prog 2 again.\n"); + // printstr("Prog 2 again.\n"); } }