Move HL related global variables into separate file
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
2023-02-13 23:41:24 +01:00
parent 2e790bd9b2
commit d8bc45e3bb
3 changed files with 15 additions and 4 deletions

13
xtoskrnl/hl/globals.c Normal file
View File

@@ -0,0 +1,13 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtoskrnl/hl/globals.c
* DESCRIPTION: Architecture independent global variables related to HL subsystem
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#include <xtos.h>
/* FrameBuffer information */
HAL_FRAMEBUFFER_DATA HlpFrameBufferData;