Skip to content

Commit

Permalink
Fixed slot mix delays
Browse files Browse the repository at this point in the history
  • Loading branch information
TexZK committed May 2, 2024
1 parent 4374fe5 commit f99285b
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/aymo_ymf262_arm_neon.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ const uint8_t aymo_(og_prout_ac)[AYMO_(SLOT_GROUP_NUM)] =
const uint8_t aymo_(og_prout_bd)[AYMO_(SLOT_GROUP_NUM)] =
{
0x88,
0xF8,
0x88,
0x88,
0xF8,
0x88,
Expand Down
2 changes: 1 addition & 1 deletion src/aymo_ymf262_x86_avx.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const uint8_t aymo_(og_prout_ac)[AYMO_(SLOT_GROUP_NUM)] = // TODO: TBV: use a s
const uint8_t aymo_(og_prout_bd)[AYMO_(SLOT_GROUP_NUM)] = // TODO: TBV: use a shared mask; use bit 7 as mask flag; <<=1 for the next flag
{
0x88,
0xF8,
0x88,
0x88,
0xF8,
0x88,
Expand Down
2 changes: 1 addition & 1 deletion src/aymo_ymf262_x86_avx2.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ const uint16_t aymo_(og_prout_ac)[AYMO_(SLOT_GROUP_NUM)] =
// Slot mask output delay for outputs B and D
const uint16_t aymo_(og_prout_bd)[AYMO_(SLOT_GROUP_NUM)] =
{
0xF888,
0x8888,
0xF888,
0xFF88,
0xFF88
Expand Down
2 changes: 1 addition & 1 deletion src/aymo_ymf262_x86_sse41.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ const uint8_t aymo_(og_prout_ac)[AYMO_(SLOT_GROUP_NUM)] =
const uint8_t aymo_(og_prout_bd)[AYMO_(SLOT_GROUP_NUM)] =
{
0x88,
0xF8,
0x88,
0x88,
0xF8,
0x88,
Expand Down
1 change: 0 additions & 1 deletion tests/test_ymf262_compare_epilogue_inline.h
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ static int app_run(void)

if (status->flags & AYMO_SCORE_FLAG_EVENT) {
OPL3_WriteReg(&nuked_chip, status->address, status->value);

aymo_(write)(&aymo_chip, status->address, status->value);
score_delay = 2u;
}
Expand Down

0 comments on commit f99285b

Please sign in to comment.