N64FlashcartMenu
Loading...
Searching...
No Matches
boot.h
Go to the documentation of this file.
1
7#ifndef BOOT_H__
8#define BOOT_H__
9
10#include <stdbool.h>
11#include <stdint.h>
12
18
24
32
41
47void boot (boot_params_t *params);
48
49#endif /* BOOT_H__ */
uint8_t cic_seed
Definition boot.h:37
void boot(boot_params_t *params)
Boot the system with the specified parameters.
Definition boot.c:36
boot_tv_type_t tv_type
Definition boot.h:36
boot_reset_type_t
Reset type enumeration.
Definition boot.h:20
@ BOOT_RESET_TYPE_COLD
Definition boot.h:21
@ BOOT_RESET_TYPE_NMI
Definition boot.h:22
boot_tv_type_t
TV type enumeration.
Definition boot.h:26
@ BOOT_TV_TYPE_NTSC
Definition boot.h:28
@ BOOT_TV_TYPE_PAL
Definition boot.h:27
@ BOOT_TV_TYPE_MPAL
Definition boot.h:29
@ BOOT_TV_TYPE_PASSTHROUGH
Definition boot.h:30
bool detect_cic_seed
Definition boot.h:38
uint32_t * cheat_list
Definition boot.h:39
boot_device_type_t
Boot device type enumeration.
Definition boot.h:14
@ BOOT_DEVICE_TYPE_ROM
Definition boot.h:15
@ BOOT_DEVICE_TYPE_64DD
Definition boot.h:16
boot_device_type_t device_type
Definition boot.h:35
Boot Parameters Structure.
Definition boot.h:34