summaryrefslogtreecommitdiffhomepage
path: root/src/loader/inc/impl/all.h
diff options
context:
space:
mode:
authorMarvin Borner2021-07-06 22:07:04 +0200
committerMarvin Borner2021-07-06 22:07:04 +0200
commitb2880945ae17ad857bd425540acd3dc75b2cff6b (patch)
treef5dea0028fb5e2b9072aa15f60c497bc7e20d13b /src/loader/inc/impl/all.h
parent23aa6f84539ba320a91235fb81681d0754178f62 (diff)
Basic multiboot 1 detection and verification
Diffstat (limited to 'src/loader/inc/impl/all.h')
-rw-r--r--src/loader/inc/impl/all.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/loader/inc/impl/all.h b/src/loader/inc/impl/all.h
new file mode 100644
index 0000000..366b1b3
--- /dev/null
+++ b/src/loader/inc/impl/all.h
@@ -0,0 +1,23 @@
+// MIT License, Copyright (c) 2021 Marvin Borner
+
+#ifndef IMPL_ALL_H
+#define IMPL_ALL_H
+
+#include <def.h>
+
+enum impl_type {
+ IMPL_NONE,
+ IMPL_MB1,
+ IMPL_MB2,
+};
+
+struct impl {
+ enum impl_type type;
+ void *start; // Of header/entry
+};
+
+#include <dev.h>
+
+u8 impl_detect(struct dev *dev, const char *path);
+
+#endif