1
This commit is contained in:
2022-07-24 16:51:16 +02:00
parent a15e1d9fd4
commit e1eac41853
18 changed files with 48 additions and 97 deletions

View File

@ -13,11 +13,10 @@
#define __CPU_include__
class CPU {
private:
CPU(const CPU& copy); // Verhindere Kopieren
public:
CPU() {}
CPU(const CPU& copy) = delete; // Verhindere Kopieren
CPU() = default;
// Erlauben von (Hardware-)Interrupts
static inline void enable_int() {