From 1b429c0fc28e5cd8b474ad5a1de1fa6f3d7c2e2a Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 12 Jul 2021 18:14:44 +0200 Subject: Renamed files to match presentation --- src/loader/inc/protocol.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/loader/inc/protocol.h (limited to 'src/loader/inc/protocol.h') diff --git a/src/loader/inc/protocol.h b/src/loader/inc/protocol.h new file mode 100644 index 0000000..a667467 --- /dev/null +++ b/src/loader/inc/protocol.h @@ -0,0 +1,20 @@ +// MIT License, Copyright (c) 2021 Marvin Borner + +#ifndef IMPL_H +#define IMPL_H + +#include + +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 -- cgit v1.2.3