blob: 635fac351d9432cadeac05835452a7bcc91ff5e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.set noreorder
.include "hwregs_a.h"
.section .data
.global SpuReverbOn
.type SpuReverbOn, @function
SpuReverbOn:
lui $v1, IOBASE
li $v0, 1
sll $v0, $a0
sw $v0, SPU_REVERB_ON($v1)
jr $ra
nop
|