summaryrefslogtreecommitdiff
path: root/Source/Kernel/Linker/MelonBinary.class.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Kernel/Linker/MelonBinary.class.h')
-rw-r--r--Source/Kernel/Linker/MelonBinary.class.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Source/Kernel/Linker/MelonBinary.class.h b/Source/Kernel/Linker/MelonBinary.class.h
new file mode 100644
index 0000000..4300c7e
--- /dev/null
+++ b/Source/Kernel/Linker/MelonBinary.class.h
@@ -0,0 +1,21 @@
+#ifndef DEF_MELONBINARY_CLASS_H
+#define DEF_MELONBINARY_CLASS_H
+
+#include <Linker/Binary.proto.h>
+
+class MelonBinary : public Binary {
+ private:
+ u32int m_size;
+ u32int m_org;
+ u8int* m_data;
+
+ MelonBinary() {}
+
+ public:
+ virtual ~MelonBinary();
+ static Binary* load(File& file);
+
+ thread_entry_t toProcess(Process* p);
+};
+
+#endif