From 8db6fc60063757628f92bd1c4d4855775f4ff9e2 Mon Sep 17 00:00:00 2001 From: Amlal Date: Fri, 27 Sep 2024 11:41:44 +0200 Subject: feat&wip: Math API for CG, WiP HAL Paging API. - NOTE: HAL Paging API is still in wip, issues have to be fixed. - Moved WM code to corecg driver. Signed-off-by: Amlal --- dev/corecg/corecg.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 dev/corecg/corecg.json (limited to 'dev/corecg/corecg.json') diff --git a/dev/corecg/corecg.json b/dev/corecg/corecg.json new file mode 100644 index 00000000..e7f5c216 --- /dev/null +++ b/dev/corecg/corecg.json @@ -0,0 +1,23 @@ +{ + "compiler_path": "x86_64-w64-mingw32-g++", + "compiler_std": "c++20", + "headers_path": ["../", "../zka"], + "sources_path": ["src/*.cxx"], + "output_name": "corecg.sys", + "compiler_flags": [ + "-fPIC", + "-ffreestanding", + "-shared", + "-fno-rtti", + "-fno-exceptions", + "-Wl,--subsystem=17" + ], + "cpp_macros": [ + "__CORECG_IMPL__", + "__NEWOSKRNL__", + "__ZKA_AMD64__", + "cCoreCGVersion=0x0100", + "cCoreCGVersionHighest=0x0100", + "cCoreCGVersionLowest=0x0100" + ] +} -- cgit v1.2.3