-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsample-tester.asm
66 lines (51 loc) · 1.65 KB
/
sample-tester.asm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
include '../lib-68k/mdshell.asm'
include '../build/bundle/asm68k-linkable/MegaPCM.asm'
; ------------------------------------------------------------------------------
section rom
xdef Main
; ------------------------------------------------------------------------------
Main:
Console.SetXY #1, #1
Console.WriteLine "Mega PCM 2.0 Simple tester"
Console.WriteLine "(c) 2024, Vladikcomper%<endl>"
Console.Write "Loading Mega PCM driver... "
jsr MegaPCM_LoadDriver
Console.WriteLine "OK"
Console.Write "Loading Sample table... "
lea SampleTable(pc), a0
jsr MegaPCM_LoadSampleTable
tst.w d0
beq.s @SampleTableOk
if def(__DEBUG__)
RaiseError "MegaPCM_LoadSampleTable returned %<.b d0>", MPCM_Debugger_LoadSampleTableException
else
illegal
endif
@SampleTableOk:
Console.WriteLine "OK"
Console.WriteLine "Initiating sample playback...%<endl>"
move.b #$81, d0
jsr MegaPCM_PlaySample
Console.Write "PLAYING"
pea 0.w
@MainLoop:
jsr MDDBG__VSync
subq.w #8, (sp)
moveq #3, d1
and.b (sp), d1
lea @Str_Dots(pc,d1.w), a0
Console.Write "%<setx,8>%<.l a0 str>"
bra.s @MainLoop
; ------------------------------------------------------------------------------
@Str_Dots:
dc.b ".... ", 0
even
; ------------------------------------------------------------------------------
; Default sample table
; ------------------------------------------------------------------------------
SampleTable:
; type pointer Hz flags id
dcSample TYPE_PCM_TURBO, SampleLoop, 0, FLAGS_LOOP ; $81
dc.w -1 ; end marker
; ------------------------------------------------------------------------------
incdac SampleLoop, 'sample-tester/sample-loop.wav'