Files
dusklight/include/JSystem/JAudio2/JASRegisterParam.h
T
TakaRikka dfa8efa97b project cleanup (#2895)
* some wii OS fixes

* remove old dol2asm comments

* remove dol2asm.h

* remove function address comments

* normalize ATTRIBUTE_ALIGN usage

* DECL_WEAK macro

* fix gcc attribute weak macro

* wrap more mwcc specific things in ifdefs

* fixes

* fix revo sdk version flags

* fixes
2025-11-30 15:23:42 -07:00

28 lines
422 B
C++

#ifndef JASREGISTERPARAM_H
#define JASREGISTERPARAM_H
#include "dolphin/types.h"
/**
* @ingroup jsystem-jaudio
*
*/
class JASRegisterParam {
public:
enum RegID {
REG0,
REG1,
REG2,
REG3,
};
JASRegisterParam();
void init();
void write(JASRegisterParam::RegID, u32);
u32 read(JASRegisterParam::RegID);
u16 field_0x0[14];
};
#endif /* JASREGISTERPARAM_H */