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

@ -2551,6 +2551,9 @@ void DivPlatformOPL::renderSamples(int sysID) {
memset(sampleOffB,0,256*sizeof(unsigned int));
memset(sampleLoaded,0,256*sizeof(bool));
memCompo=DivMemoryComposition();
memCompo.name="Sample Memory";
size_t memPos=0;
for (int i=0; i<parent->song.sampleLen; i++) {
DivSample* s=parent->song.sample[i];
@ -2575,9 +2578,13 @@ void DivPlatformOPL::renderSamples(int sysID) {
sampleLoaded[i]=true;
}
sampleOffB[i]=memPos;
memCompo.entries.push_back(DivMemoryEntry(DIV_MEMORY_SAMPLE,"Sample",i,memPos,memPos+paddedLen));
memPos+=paddedLen;
}
adpcmBMemLen=memPos+256;
memCompo.used=adpcmBMemLen;
memCompo.capacity=getSampleMemCapacity(0);
}
int DivPlatformOPL::init(DivEngine* p, int channels, int sugRate, const DivConfig& flags) {