mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-08-14 04:22:41 -04:00
8cc9fc069c
* Create chraicommands.c * Move include to src/include * Use .o files next to each .c file
19 lines
460 B
C
19 lines
460 B
C
#ifndef _ULTRA64_EEPROM_H_
|
|
#define _ULTRA64_EEPROM_H_
|
|
|
|
typedef struct
|
|
{
|
|
u16 unk00;
|
|
u16 unk01;
|
|
} OSEepromUnknownStruct0;
|
|
|
|
/* Functions */
|
|
|
|
s32 osEepromLongRead(OSMesgQueue *mq, u8 address, u8 *buffer, int nbytes);
|
|
s32 osEepromLongWrite(OSMesgQueue *mq, u8 address, u8 *buffer, int nbytes);
|
|
s32 osEepromWrite(OSMesgQueue *mq, u8 address, u8 *buffer);
|
|
s32 osEepromRead(OSMesgQueue *mq, u8 address, u8 *buffer);
|
|
s32 osEepromProbe(OSMesgQueue *mq);
|
|
|
|
#endif
|