Doh!
This commit is contained in:
parent
09cd19d3c7
commit
ae33573513
2 changed files with 3 additions and 1 deletions
|
@ -6,7 +6,7 @@ LD=ld
|
|||
|
||||
IDT_DISPATCH = _ZN3IDT8dispatchEP8CpuState
|
||||
|
||||
FLAGS = -DIDT_DISPATCH=$(IDT_DISPATCH) -ffreestanding -m32 -Werror -Wall -iquote include -iquote lists -O3
|
||||
FLAGS = -DIDT_DISPATCH=$(IDT_DISPATCH) -ffreestanding -m32 -Werror -Wall -iquote include -iquote lists -O3 -g
|
||||
ASFLAGS = $(FLAGS)
|
||||
CFLAGS = $(FLAGS)
|
||||
CXXFLAGS = $(FLAGS) -std=c++14 -fno-rtti -fno-exceptions -fno-leading-underscore -fno-use-cxa-atexit -nostdlib -fno-builtin
|
||||
|
|
|
@ -100,6 +100,8 @@ extern "C" void init(Structure const & data)
|
|||
|
||||
asm volatile("sti");
|
||||
|
||||
// asm volatile ("int $0x00");
|
||||
|
||||
Console::main << "Interrupts enabled.\n";
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue