コード例 #1
0
ファイル: janus86.c プロジェクト: sibiantony/janus86
/*	Main function of the Janus86 kernel	*/
void k_main()
{	
	kclear_screen ();
/* Initialize memory and start paging*/
	mem_init ();
/* Initialize the fs modules compiled into the kernel*/
	init_fs_modules ();
/* Initialize the 8259 interrupt controller */
/*	Init8259();	*/
/* Initialize the Interrupt descriptor table*/
/*	InitIDT();	*/
/* Calibrate the delay loop */
/*	calibrateDelayLoop(); */

/*Probe the IDE drives present in the system*/
	probe_ide_drives ();
/*Read the disk partitions	*/
	read_disk_partitions ();

/*Enter the shell	*/
	shell_main ();
	while (1);		
}
コード例 #2
0
ファイル: kernel.c プロジェクト: Qining/ToyOS
// BEGIN_PM => KERNEL_ADDR (kernel_entry.nasm) => main
// Note we don't have a large stack.
void main() {
  kclear_screen();
  kprint_at(MSG_WELCOME, 0u,0u);
}