mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-11 05:04:40 -04:00
dfa8efa97b
* 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
28 lines
422 B
C++
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 */
|