summaryrefslogtreecommitdiffhomepage
path: root/src/loader/inc/impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/loader/inc/impl.h')
-rw-r--r--src/loader/inc/impl.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/loader/inc/impl.h b/src/loader/inc/impl.h
deleted file mode 100644
index 58ae706..0000000
--- a/src/loader/inc/impl.h
+++ /dev/null
@@ -1,20 +0,0 @@
-// MIT License, Copyright (c) 2021 Marvin Borner
-
-#ifndef IMPL_H
-#define IMPL_H
-
-#include <dev.h>
-
-enum impl_type {
- IMPL_NONE,
- IMPL_MB1,
- IMPL_MB2,
-};
-
-struct impl {
- enum impl_type type;
- u32 offset; // Of header/entry
- void (*load)(struct dev *, const char *);
-};
-
-#endif