aboutsummaryrefslogtreecommitdiff
path: root/src/mplayer/mplayer_init.z80
blob: 90b38241a6f7fe2460cc246f2d99cb70754f52c5 (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