grim/gousb2snes

Update the package path for the new repository host
draft default tip
2020-04-27, Gary Kramlich
2bff12a54574
Update the package path for the new repository host
package sd2snes
func nullTerminated(buffer []byte) string {
r := ""
for _, b := range buffer {
if b == 0x0 {
break
}
r += string(b)
}
return r
}