memory composition, part 5

almost there
This commit is contained in:
tildearrow 2024-03-06 03:42:21 -05:00
parent 6763aa44a9
commit 0be5835645
13 changed files with 108 additions and 1 deletions

View file

@ -160,6 +160,12 @@ class DivPlatformYM2610Base: public DivPlatformOPN {
memset(sampleOffB,0,256*sizeof(unsigned int));
memset(sampleLoaded,0,256*2*sizeof(bool));
memCompoA=DivMemoryComposition();
memCompoA.name="ADPCM-A";
memCompoB=DivMemoryComposition();
memCompoB.name="ADPCM-B";
size_t memPos=0;
for (int i=0; i<parent->song.sampleLen; i++) {
DivSample* s=parent->song.sample[i];
@ -184,10 +190,14 @@ class DivPlatformYM2610Base: public DivPlatformOPN {
sampleLoaded[0][i]=true;
}
sampleOffA[i]=memPos;
memCompoA.entries.push_back(DivMemoryEntry(DIV_MEMORY_SAMPLE,"Sample",i,memPos,memPos+paddedLen));
memPos+=paddedLen;
}
adpcmAMemLen=memPos+256;
memCompoA.used=adpcmAMemLen;
memCompoA.capacity=getSampleMemCapacity(0);
memset(adpcmBMem,0,getSampleMemCapacity(1));
memPos=0;
@ -214,9 +224,13 @@ class DivPlatformYM2610Base: public DivPlatformOPN {
sampleLoaded[1][i]=true;
}
sampleOffB[i]=memPos;
memCompoB.entries.push_back(DivMemoryEntry(DIV_MEMORY_SAMPLE,"Sample",i,memPos,memPos+paddedLen));
memPos+=paddedLen;
}
adpcmBMemLen=memPos+256;
memCompoB.used=adpcmBMemLen;
memCompoB.capacity=getSampleMemCapacity(1);
}
void setFlags(const DivConfig& flags) {