aboutsummaryrefslogtreecommitdiff
path: root/src/mplayer/mplayer_init.z80
blob: f1b62947c14ea8c41639d01f392a168d8c4f323f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.globl _mplayer_init

.globl _PLY_AKM_INIT

_mplayer_init::
	ld ix, #2
	add ix, sp

	ld l, 0 (ix)
	ld h, 1 (ix)
	ld a, 2 (ix)

        di
	call _PLY_AKM_INIT
        ei

        ret