ptos: ex: Add loader dispatch + ELF64 loader

Signed-off-by: Chloe M <chloe@mensia.org>
This commit is contained in:
2026-07-14 22:13:17 -04:00
parent cb12ab9518
commit cbb440b8e9
4 changed files with 324 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause.
*
* Description: ELF64 loader
* Author: Chloe M.
*/
#ifndef _EX_ELF64_H_
#define _EX_ELF64_H_ 1
#include <ex/loader.h>
#include <ptdef.h>
/* Externs */
extern LOADER_OPS gElf64Ops;
#endif /* !_EX_ELF64_H_ */