gb-player/main.go

17 lines
254 B
Go

package main
import (
"gb-player/ui"
)
func main() {
// FIXME(m): Allow specifying rom file on command line
// if len(os.Args) != 2 {
// log.Fatalln("No rom file specified")
// }
// romPath := os.Args[1]
romPath := "rom.gb"
ui.Run(romPath)
}