shithub: sce

ref: 01c80ca6f4222d79059d219b94e3a426cb2b3bfd
dir: /rc/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
}' $*