summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BUGS2
-rw-r--r--README4
-rw-r--r--src/Makefile2
-rw-r--r--src/kernel/kernel.c5
4 files changed, 9 insertions, 4 deletions
diff --git a/BUGS b/BUGS
index 1104f2a..0f618d8 100644
--- a/BUGS
+++ b/BUGS
@@ -21,6 +21,4 @@
outside of the library. Then in the libc test directory we have
to implement a stub module for instance using some host functions
like standard io of the host C library
-- VGA graphic mode switch fails with optimizations on (at least with
- gcc and clang)
diff --git a/README b/README
index d5ab4d6..b5ae0db 100644
--- a/README
+++ b/README
@@ -58,6 +58,10 @@ with the following settings in the user ~/.gdbinit
set auto-load local-gdbinit
set auto-load safe-path /
+for assembly code view:
+
+set disassemble-next-line on
+
links
-----
diff --git a/src/Makefile b/src/Makefile
index 0586d4b..b44e310 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,6 +1,6 @@
CC := gcc
INCLUDES = -I. -Ilibc -Ihardware -Idrivers -Idrivers/hdi -Idrivers/hdi/ps2 -Idrivers/video -Ikernel -Igui
-CFLAGS := -std=c99 -m32 -march=i486 -ffreestanding -O0 -g -Werror $(INCLUDES)
+CFLAGS := -std=c99 -m32 -march=i486 -ffreestanding -O3 -g -Werror $(INCLUDES)
LD := ld
NASMFLAGS := -f elf32
NASM := nasm
diff --git a/src/kernel/kernel.c b/src/kernel/kernel.c
index dd61f45..f2210d6 100644
--- a/src/kernel/kernel.c
+++ b/src/kernel/kernel.c
@@ -321,6 +321,7 @@ static void handle_mouse_event( mouse_event_t *event, void *context )
static void funcA( void )
{
while( true ) {
+ kernel_halt( );
//~ printf( "A" );
//~ kernel_panic( "panic in task" );
}
@@ -329,6 +330,7 @@ static void funcA( void )
static void funcB( void )
{
while( true ) {
+ kernel_halt( );
//~ printf( "B" );
}
}
@@ -336,6 +338,7 @@ static void funcB( void )
static void refresh_screen( void )
{
while( true ) {
+ kernel_halt( );
switch( global_context.mode ) {
case MODE_TEXT:
// nothing to draw or refresh in text mode, the
@@ -355,7 +358,7 @@ static void refresh_screen( void )
interrupts_enable( );
break;
- }
+ }
}
}