shithub: sce

ref: f2a1c2c13ea8f9e0ece5500dd7783754362c3099
dir: /utils/jvc2pal/

View raw version
#!/bin/rc
awk '
NR==3{
	print "pal 256"
}
NR>3{
	x = $1*65536 + $2*256 + $3
	printf "0x%06x\n", x
}' $*