diff options
Diffstat (limited to 'libopna/opnatables.h')
-rw-r--r-- | libopna/opnatables.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/libopna/opnatables.h b/libopna/opnatables.h index 30140bf..825e390 100644 --- a/libopna/opnatables.h +++ b/libopna/opnatables.h @@ -208,10 +208,15 @@ static const uint16_t exptable[EXPTABLELEN] = { static const uint8_t rateinctable[4*2][8] = { // rates 0 - 47 - {0, 1, 0, 1, 0, 1, 0, 1}, - {0, 1, 0, 1, 1, 1, 0, 1}, - {0, 1, 1, 1, 0, 1, 1, 1}, - {0, 1, 1, 1, 1, 1, 1, 1}, +// TODO: not bit perfect +// {0, 1, 0, 1, 0, 1, 0, 1}, +// {0, 1, 0, 1, 1, 1, 0, 1}, +// {0, 1, 1, 1, 0, 1, 1, 1}, +// {0, 1, 1, 1, 1, 1, 1, 1}, + {1, 0, 1, 0, 1, 0, 1, 0}, + {1, 0, 1, 0, 1, 1, 1, 0}, + {1, 0, 1, 1, 1, 0, 1, 1}, + {1, 0, 1, 1, 1, 1, 1, 1}, // rates 48 - {1, 1, 1, 1, 1, 1, 1, 1}, |