# UnPack32(r3:UL)(L,L,L,L)

	.text
	.global	_UnPack32

_UnPack32:
	srwi	r4,r3,8
	srwi	r5,r3,16
	srwi	r6,r3,24
	andi.	r3,r3,0xff
	andi.	r4,r4,0xff
	andi.	r5,r5,0xff
	blr

	.type	_UnPack32,@function
	.size	_UnPack32,$-_UnPack32
