Skip to content

Commit

Permalink
Bump version to v0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
29jm committed Dec 18, 2020
1 parent 3130676 commit 59ddb6f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kernel/src/kernel.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void kernel_main(multiboot_t* boot, uint32_t magic) {
printk("The multiboot magic header is wrong: proceeding anyway");
}

printk("SnowflakeOS 0.6");
printk("SnowflakeOS 0.7");
printk("kernel is %d KiB large", ((uint32_t) &KERNEL_SIZE) >> 10);

init_fpu();
Expand Down
1 change: 0 additions & 1 deletion kernel/src/sys/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,6 @@ void proc_exit() {
proc_schedule();
}


uint32_t proc_get_current_pid() {
if (current_process) {
return current_process->pid;
Expand Down
2 changes: 1 addition & 1 deletion modules/src/background.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ int main() {
};

snow_draw_rect(win->fb, 0, 0, win->fb.width, 22, 0x303030);
snow_draw_string(win->fb, "Snowflake OS 0.6", 3, 3, 0x00FFFFFF);
snow_draw_string(win->fb, "Snowflake OS 0.7", 3, 3, 0x00FFFFFF);
snow_draw_string(win->fb, time_text, x, y, 0xFFFFFF);
snow_render_window_partial(win, redraw);

Expand Down

0 comments on commit 59ddb6f

Please sign in to comment.