Merge pull request #357 from Cuyler36/jaudio_NES_astest

This commit is contained in:
Cuyler36
2024-06-09 20:36:38 -04:00
committed by GitHub
4 changed files with 17 additions and 0 deletions
+1
View File
@@ -8,6 +8,7 @@ symbol_aligns:
0x80019380: 32
0x80019760: 32
0x8001a0c0: 32
0x80026400: 32
0x80031d80: 32
0x80207458: 8 # align RunQueue to 0x001251d8
0x800b9140: 32 # align gam_win_moji1_tex to 32 bytes
+2
View File
@@ -103,6 +103,8 @@ jaudio_NES/internal/playercall.c:
.bss: [0x801864d0,0x80186590]
jaudio_NES/internal/os.c:
.text: [0x80026120, 0x80026300]
jaudio_NES/internal/astest.c:
.text: [0x80026300, 0x80026400]
jaudio_NES/internal/random.c:
.text: [0x80031ce0, 0x80031d80]
.sdata: [0x80217c38, 0x80217c40]
+9
View File
@@ -0,0 +1,9 @@
#ifndef ASTEST_H
#define ASTEST_H
#include "types.h"
#include "jaudio_NES/audiostruct.h"
extern void CopyStc(commonch* dstStc, commonch* srcStc);
#endif
+5
View File
@@ -0,0 +1,5 @@
#include "jaudio_NES/astest.h"
extern void CopyStc(commonch* dstStc, commonch* srcStc) {
*dstStc = *srcStc;
}