When I generate a SPC (norom) with the following file (minimal test case),
The first note is the wrong octave, but the second is correct octave.
If I do this,
or this,
the first note of each loop is wrong.
But if I do this,
only the note before the loop is wrong.
I don't know if the bug is present in the music data inserted into the ROM.
Code
#amk 1 #3 v255 o4 @24 >c4 c4<
The first note is the wrong octave, but the second is correct octave.
If I do this,
Code
@24 o4 [>c4 c4<]2
or this,
Code
@24 o4 > [c4 c4]2
the first note of each loop is wrong.
But if I do this,
Code
@24 o4 > c4 [c4 c4]2
only the note before the loop is wrong.
I don't know if the bug is present in the music data inserted into the ROM.