7d32444da2
- Implemented CR3 switching in scheduler for process isolation - Added 'process' structure and PML4 cloning (vmm_create_address_space) - Added NASM crt0 and C entry point for userspace apps
15 lines
273 B
C
15 lines
273 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
// Copyright (c) 2025 0xKarinyash
|
|
|
|
#pragma once
|
|
|
|
void cmd_kfetch();
|
|
void cmd_meow();
|
|
void cmd_help();
|
|
void cmd_regs();
|
|
void print_regs();
|
|
void cmd_sleep();
|
|
void cmd_debug();
|
|
void cmd_rand();
|
|
void cmd_ver();
|
|
void cmd_userspace(); |