Implement & link jaudio_NES/random.c

This commit is contained in:
Cuyler36
2024-06-08 21:41:06 -04:00
parent 408de73fc0
commit 2bccc92088
4 changed files with 52 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef JAUDIO_RANDOM_H
#define JAUDIO_RANDOM_H
#include "types.h"
#include "jaudio_NES/audiostruct.h"
#include "jaudio_NES/audiowork.h"
#ifdef __cplusplus
extern "C" {
#endif
extern s32 GetRandom_s32(void);
extern f32 GetRandom_sf32(void);
#ifdef __cplusplus
}
#endif
#endif