N64FlashcartMenu
Loading...
Searching...
No Matches
reboot.h
1#ifndef REBOOT_H__
2#define REBOOT_H__
3
4
5#ifndef __ASSEMBLER__
6
7#include <stdint.h>
8#include <stddef.h>
9
10
11extern uint32_t reboot_start __attribute__((section(".text")));
12extern size_t reboot_size __attribute__((section(".text")));
13
14#endif
15
16
17#endif