diff options
author | Daniel Harding <corrnondacqb@yahoo.com> | 2015-03-19 00:19:59 -0400 |
---|---|---|
committer | Daniel Harding <corrnondacqb@yahoo.com> | 2015-03-19 00:19:59 -0400 |
commit | ae198f05566310d64d201bc8e5b9b54f90c27b7b (patch) | |
tree | d5fe4e6cde4cfa6d37e1a9f04ee267c384b73f42 /src/audio/vibrato_types.asm | |
parent | 3c75edba47b89066383a4dae07d225cbc1cbff77 (diff) | |
parent | d41ad62f5bf43c98d05c593d5c64a5a42b7c0cee (diff) |
Merge pull request #6 from stag019/srcrgbgfx
Move source code into "src/". Update Makefile/scan_includes.
Diffstat (limited to 'src/audio/vibrato_types.asm')
-rwxr-xr-x | src/audio/vibrato_types.asm | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/audio/vibrato_types.asm b/src/audio/vibrato_types.asm new file mode 100755 index 0000000..d51546e --- /dev/null +++ b/src/audio/vibrato_types.asm @@ -0,0 +1,44 @@ + dw .vibratoType0 + dw .vibratoType1 + dw .vibratoType2 + dw .vibratoType3 + dw .vibratoType4 + dw .vibratoType5 + dw .vibratoType6 + dw .vibratoType7 + dw .vibratoType8 + dw .vibratoType9 + dw .vibratoTypeA + +.vibratoType0 + db $00,$80,$80 + +.vibratoType1 + db $01,$02,$01,$00,$ff,$fe,$ff,$00,$80,$80 + +.vibratoType2 + db $03,$fd,$03,$00,$00,$00,$00,$00,$00,$00,$00,$00,$80,$01 + +.vibratoType3 + db $01,$01,$00,$00,$ff,$ff,$00,$00,$80,$80 + +.vibratoType4 + db $01,$01,$01,$00,$00,$00,$ff,$ff,$ff,$00,$00,$00,$80,$80 + +.vibratoType5 + db $02,$04,$06,$04,$02,$00,$fe,$fc,$fa,$fc,$fe,$00,$80,$80 + +.vibratoType6 + db $04,$04,$08,$08,$04,$04,$00,$00,$fc,$fc,$f8,$f8,$fc,$fc,$00,$00,$80,$80 + +.vibratoType7 + db $f8,$f8,$f9,$f9,$fa,$fa,$fb,$fb,$fc,$fc,$fd,$fd,$fe,$fe,$ff,$ff,$00,$00,$80,$05 + +.vibratoType8 + db $02,$04,$02,$00,$fe,$fc,$fe,$00,$80,$80 + +.vibratoType9 + db $01,$02,$04,$02,$01,$00,$ff,$fe,$fc,$fe,$ff,$00,$80,$08 + +.vibratoTypeA + db $01,$01,$01,$01,$00,$00,$00,$00,$ff,$ff,$ff,$ff,$00,$00,$00,$00,$80,$80 |