Initialize framebuffer and processor
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 29s
Builds / ExectOS (i686) (push) Successful in 27s

This commit is contained in:
Rafal Kupiec 2023-11-29 22:47:22 +01:00
parent 31b8cd8d3d
commit 1e696258c2
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
2 changed files with 12 additions and 0 deletions

View File

@ -72,6 +72,12 @@ KepInitializeMachine(VOID)
/* Disable the legacy PIC */
HlDisablePic();
/* Initialize frame buffer */
HlInitializeFrameBuffer();
/* Initialize processor */
HlInitializeProcessor();
}
/**

View File

@ -72,6 +72,12 @@ KepInitializeMachine(VOID)
/* Disable the legacy PIC */
HlDisablePic();
/* Initialize frame buffer */
HlInitializeFrameBuffer();
/* Initialize processor */
HlInitializeProcessor();
}
/**