fixed all bugs

This commit is contained in:
Simon
2025-06-02 16:13:39 +02:00
parent 893fc4bad9
commit c46cc8d1a2
5 changed files with 10 additions and 9 deletions

View File

@@ -21,7 +21,6 @@ Ich bin Großmuttersniffer\n\
Und wacht sie aus'm Koma auf, kriegt sie von mir 'n Sticker\n\
\n";
extern TextStream kout;
extern Ticketlock koutlock;
void activeWaitDelay(uint64_t cycles) {
@@ -41,12 +40,13 @@ void Application::action() { // NOLINT
Guarded g = Guard::enter();
//g.vault();
while(text[cnt++] != '\n'){
g.vault().kout << text[cnt-1];
g.vault().kout << cnt;
}
g.vault().kout << endl << flush;
//g.vault().kout << endl << flush;
//Guard::leave();
//koutlock.unlock();
}
Core::pause();
activeWaitDelay(1000000000);
if(cnt >= sizeof(text)-1)
cnt=0;