mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
e3f1ccd902
* Fix all headers to comply with C standard * fix a file in libultra * Update include/stdbool.h Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com> * Update stdbool.h * Update z64animation.h Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com>
14 lines
507 B
C
14 lines
507 B
C
#ifndef ULTRA64_RCP_H
|
|
#define ULTRA64_RCP_H
|
|
|
|
#define VI_NTSC_CLOCK 48681812 /* Hz = 48.681812 MHz */
|
|
#define VI_PAL_CLOCK 49656530 /* Hz = 49.656530 MHz */
|
|
#define VI_MPAL_CLOCK 48628316 /* Hz = 48.628316 MHz */
|
|
|
|
#define DEVICE_TYPE_CART 0 /* ROM cartridge */
|
|
#define DEVICE_TYPE_BULK 1 /* ROM bulk */
|
|
#define DEVICE_TYPE_64DD 2 /* 64 Disk Drive */
|
|
#define DEVICE_TYPE_SRAM 3 /* SRAM */
|
|
#define DEVICE_TYPE_INIT 7 /* initial value */
|
|
|
|
#endif
|