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

2
c_os/kernel/Globals.h Executable file → Normal file
View File

@ -11,11 +11,13 @@
#define __Globals_include__
#include "devices/CGA_Stream.h"
#include "devices/Keyboard.h"
#include "devices/PCSPK.h"
#include "kernel/CPU.h"
extern CPU cpu; // CPU-spezifische Funktionen
extern PCSPK pcspk; // PC-Lautsprecher
extern CGA_Stream kout; // Ausgabe-Strom fuer Kernel
extern Keyboard kb; // Tastatur
#endif