fixed really all bugs

This commit is contained in:
Simon
2025-06-03 13:25:30 +02:00
parent c46cc8d1a2
commit 0a150eb84b
3 changed files with 5 additions and 5 deletions

View File

@@ -7,7 +7,7 @@
#include "../../sync/ticketlock.h"
#include "../../arch/core.h"
#include "../../interrupt/guard.h"
#include "../../debug/output.h"
char text[] = "Ich mag\n\
Saftige Pflaumen voller Aroma\n\
Ich knuddel jede Oma ins Koma\n\
@@ -40,14 +40,14 @@ void Application::action() { // NOLINT
Guarded g = Guard::enter();
//g.vault();
while(text[cnt++] != '\n'){
g.vault().kout << cnt;
DBG << cnt;
}
//g.vault().kout << endl << flush;
//Guard::leave();
//koutlock.unlock();
}
Core::pause();
activeWaitDelay(1000000000);
activeWaitDelay(100000000);
if(cnt >= sizeof(text)-1)
cnt=0;