add bluescreen demo
This commit is contained in:
20
c_os/user/demo/BlueScreenDemo.h
Normal file
20
c_os/user/demo/BlueScreenDemo.h
Normal 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
|
||||
Reference in New Issue
Block a user