1

add bluescreen demo

This commit is contained in:
2022-07-11 20:27:03 +02:00
parent 9d4996826a
commit 898a44f7ff
5 changed files with 48 additions and 24 deletions

View File

@ -0,0 +1,20 @@
#ifndef __BlueScreenDemo_include__
#define __BlueScreenDemo_include__
#include "kernel/Globals.h"
#include "kernel/threads/Thread.h"
class BlueScreenDemo : public Thread {
private:
BlueScreenDemo(const BlueScreenDemo& copy) = delete;
public:
BlueScreenDemo() {
kout << "Initialized BlueScreenDemo" << endl;
}
void run() override;
};
#endif