1

add Vorgabe02

This commit is contained in:
churl
2022-04-25 20:52:34 +02:00
parent 263563c105
commit 356625e647
8 changed files with 552 additions and 3 deletions

View File

@ -11,6 +11,7 @@
*****************************************************************************/
#include "kernel/Globals.h"
#include "user/KeyboardDemo.h"
#include "user/SoundDemo.h"
#include "user/TextDemo.h"
@ -22,10 +23,10 @@ int main() {
// TODO: Startmeldung ausgeben
text_demo();
// text_demo();
// sound_demo();
keyboard_demo();
while (1)
;
while (1);
return 0;
}