diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-03-16 18:08:25 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-03-16 18:08:25 -0400 |
commit | 2bc8cf5fc11d4ef84022840ad10cd05eaab12ae9 (patch) | |
tree | a51a504112ef948c1ddcb0b7e31c2f285f3b84a9 /audio/notes.asm | |
parent | 8b5dde16c3e7f7ad87a095f71cc6b61cf00b2bb8 (diff) |
Revise some constant definitions
Diffstat (limited to 'audio/notes.asm')
-rw-r--r-- | audio/notes.asm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/audio/notes.asm b/audio/notes.asm index eeb84959..e1d69313 100644 --- a/audio/notes.asm +++ b/audio/notes.asm @@ -1,4 +1,5 @@ FrequencyTable: + table_width 2, FrequencyTable dw 0 ; __ dw $f82c ; C_ dw $f89d ; C# @@ -12,6 +13,7 @@ FrequencyTable: dw $fb58 ; A_ dw $fb9b ; A# dw $fbda ; B_ + assert_table_length NUM_NOTES + 1 dw $fc16 ; C_ dw $fc4e ; C# dw $fc83 ; D_ @@ -24,3 +26,4 @@ FrequencyTable: dw $fdac ; A_ dw $fdcd ; A# dw $fded ; B_ + assert_table_length NUM_NOTES * 2 + 1 |