mirror of
https://github.com/gligli/nulldc-360.git
synced 2025-04-02 11:11:56 -04:00
23 lines
631 B
C
23 lines
631 B
C
/*
|
|
** gdrom_if.h
|
|
*/
|
|
#ifndef __GDROM_IF_H__
|
|
#define __GDROM_IF_H__
|
|
|
|
#include "types.h"
|
|
#include "plugins/plugin_manager.h"
|
|
|
|
//there were at least 4 gdrom implementations, ZGDROM, HLE, gdromv1 (never worked), gdromv2 (first release)
|
|
//i removed the #defines to select them as they are now redutant, so this just becomes a part of
|
|
//the code's history :)
|
|
#include "gdromv3.h"
|
|
|
|
void gdrom_reg_Init(void);
|
|
void gdrom_reg_Term(void);
|
|
void gdrom_reg_Reset(bool Manual);
|
|
|
|
u32 ReadMem_gdrom(u32 Addr, u32 sz);
|
|
void WriteMem_gdrom(u32 Addr, u32 data, u32 sz);
|
|
void FASTCALL NotifyEvent_gdrom(u32 info,void* param);
|
|
|
|
#endif //__GDROM_IF_H__
|