shithub: sce

ref: 06689e3784487e3c450521881b39d3cf40278f37
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
}' $*