N64FlashcartMenu
Loading...
Searching...
No Matches
src
boot
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
14
typedef
enum
{
15
BOOT_DEVICE_TYPE_ROM
= 0,
16
BOOT_DEVICE_TYPE_64DD
= 1,
17
}
boot_device_type_t
;
18
20
typedef
enum
{
21
BOOT_RESET_TYPE_COLD
= 0,
22
BOOT_RESET_TYPE_NMI
= 1,
23
}
boot_reset_type_t
;
24
26
typedef
enum
{
27
BOOT_TV_TYPE_PAL
= 0,
28
BOOT_TV_TYPE_NTSC
= 1,
29
BOOT_TV_TYPE_MPAL
= 2,
30
BOOT_TV_TYPE_PASSTHROUGH
= 3,
31
}
boot_tv_type_t
;
32
34
typedef
struct
{
35
boot_device_type_t
device_type
;
36
boot_tv_type_t
tv_type
;
37
uint8_t
cic_seed
;
38
bool
detect_cic_seed
;
39
uint32_t *
cheat_list
;
40
}
boot_params_t
;
41
47
void
boot
(
boot_params_t
*params);
48
49
#endif
/* BOOT_H__ */
boot_params_t::cic_seed
uint8_t cic_seed
Definition
boot.h:37
boot
void boot(boot_params_t *params)
Boot the system with the specified parameters.
Definition
boot.c:36
boot_params_t::tv_type
boot_tv_type_t tv_type
Definition
boot.h:36
boot_reset_type_t
boot_reset_type_t
Reset type enumeration.
Definition
boot.h:20
BOOT_RESET_TYPE_COLD
@ BOOT_RESET_TYPE_COLD
Definition
boot.h:21
BOOT_RESET_TYPE_NMI
@ BOOT_RESET_TYPE_NMI
Definition
boot.h:22
boot_tv_type_t
boot_tv_type_t
TV type enumeration.
Definition
boot.h:26
BOOT_TV_TYPE_NTSC
@ BOOT_TV_TYPE_NTSC
Definition
boot.h:28
BOOT_TV_TYPE_PAL
@ BOOT_TV_TYPE_PAL
Definition
boot.h:27
BOOT_TV_TYPE_MPAL
@ BOOT_TV_TYPE_MPAL
Definition
boot.h:29
BOOT_TV_TYPE_PASSTHROUGH
@ BOOT_TV_TYPE_PASSTHROUGH
Definition
boot.h:30
boot_params_t::detect_cic_seed
bool detect_cic_seed
Definition
boot.h:38
boot_params_t::cheat_list
uint32_t * cheat_list
Definition
boot.h:39
boot_device_type_t
boot_device_type_t
Boot device type enumeration.
Definition
boot.h:14
BOOT_DEVICE_TYPE_ROM
@ BOOT_DEVICE_TYPE_ROM
Definition
boot.h:15
BOOT_DEVICE_TYPE_64DD
@ BOOT_DEVICE_TYPE_64DD
Definition
boot.h:16
boot_params_t::device_type
boot_device_type_t device_type
Definition
boot.h:35
boot_params_t
Boot Parameters Structure.
Definition
boot.h:34
Generated on Mon Mar 31 2025 15:28:32 for N64FlashcartMenu by
1.12.0