This commit is contained in:
Pecusx
2025-05-30 19:51:16 +02:00
parent 0d44fecba1
commit 80b46a578b
4 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -437,7 +437,7 @@ wait_for_timer
asl ; * 2 asl ; * 2
tay ;Y = 2,4,..,16 instrument number * 2 (0,2,4,..,126) tay ;Y = 2,4,..,16 instrument number * 2 (0,2,4,..,126)
ldx #3 ;X = 0 channel (0..3 or 0..7 for stereo module) ldx #3 ;X = 0 channel (0..3 or 0..7 for stereo module)
lda #00 ;A = 0 note (0..60) lda #0 ;A = 0 note (0..60)
jsr RASTERMUSICTRACKER+15 ;RMT_SFX start tone (It works only if FEAT_SFX is enabled !!!) jsr RASTERMUSICTRACKER+15 ;RMT_SFX start tone (It works only if FEAT_SFX is enabled !!!)
lda #$ff lda #$ff
sta sfx_effect ;reinit value sta sfx_effect ;reinit value
BIN
View File
Binary file not shown.
+2 -2
View File
@@ -1,5 +1,5 @@
;* --------BEGIN-------- ;* --------BEGIN--------
;* Z:\GitHub\Young-lumberjack\msx\tbm2_str.rmt ;* C:\Atari\rmt\rmt128\tbm2_str2.rmt
FEAT_SFX equ 1 FEAT_SFX equ 1
FEAT_GLOBALVOLUMEFADE equ 0 ;RMTGLOBALVOLUMEFADE variable FEAT_GLOBALVOLUMEFADE equ 0 ;RMTGLOBALVOLUMEFADE variable
FEAT_NOSTARTINGSONGLINE equ 0 FEAT_NOSTARTINGSONGLINE equ 0
@@ -33,7 +33,7 @@ FEAT_VOLUMEONLYG3R equ 0 ;(0 times)
FEAT_TABLETYPE equ 0 ;(0 times) FEAT_TABLETYPE equ 0 ;(0 times)
FEAT_TABLEMODE equ 0 ;(0 times) FEAT_TABLEMODE equ 0 ;(0 times)
FEAT_TABLEGO equ 0 ;(0 times) FEAT_TABLEGO equ 0 ;(0 times)
FEAT_AUDCTLMANUALSET equ 0 ;(0 times) FEAT_AUDCTLMANUALSET equ 1 ;(2 times)
FEAT_VOLUMEMIN equ 0 ;(0 times) FEAT_VOLUMEMIN equ 0 ;(0 times)
FEAT_EFFECTVIBRATO equ 0 ;(0 times) FEAT_EFFECTVIBRATO equ 0 ;(0 times)
FEAT_EFFECTFSHIFT equ 1 ;(1 times) FEAT_EFFECTFSHIFT equ 1 ;(1 times)
BIN
View File
Binary file not shown.