Skip to content

Commit

Permalink
Fix gdb main breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
jonpas committed Jan 20, 2018
1 parent c49febc commit 05a48b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gdb.gdb
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ define hook-stop
printf "\n"
end

break kernel_main
break kmain
continue
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ int kmain(struct multiboot *mboot_ptr) {
monitor_write(OS_NAME);
monitor_write(", the one-handed OS!\n$ ");

// TODO Multitasking
// TODO Multitasking for proper user mode switching
//switch_to_user_mode();

// System Call test
Expand Down

0 comments on commit 05a48b9

Please sign in to comment.