1

switch cpu methods to static

This commit is contained in:
2022-07-24 00:29:21 +02:00
parent a5c14da0de
commit 605d4e8c8d
11 changed files with 52 additions and 62 deletions

View File

@ -319,7 +319,7 @@ void BIOS::Int(int inter) {
// Interrupt-Nummer in 16-Bit Code-Segment schreiben (unschoen, aber ...)
*(ptr + 48) = (unsigned char)inter;
cpu.disable_int(); // Interrupts abschalten
CPU::disable_int(); // Interrupts abschalten
bios_call();
cpu.enable_int();
CPU::enable_int();
}