Pokemon-Gen3-to-Gen-X/source/multiboot_handler.h
Lorenzo Carletti 564214cb40 first commit
2022-12-14 21:43:29 +01:00

8 lines
222 B
C

#ifndef MULTIBOOT_HANDLER__
#define MULTIBOOT_HANDLER__
enum MULTIBOOT_RESULTS {MB_SUCCESS, MB_NO_INIT_SYNC, MB_WRONG_ANSWER, MB_HEADER_ISSUE, MB_SWI_FAILURE};
enum MULTIBOOT_RESULTS multiboot_normal(u16*, u16*);
#endif