izapple2/main.go

66 lines
1.3 KiB
Go

package main
import (
"flag"
"go6502/apple2"
"go6502/apple2sdl"
)
func main() {
romFile := flag.String(
"rom",
"apple2/romdumps/Apple2_Plus.rom",
"main rom file")
disk2RomFile := flag.String(
"diskRom",
"apple2/romdumps/DISK2.rom",
"rom file for the disk drive controller")
diskImage := flag.String(
"disk",
"../dos33.dsk",
"file to load on the first disk drive")
cpuClock := flag.Float64(
"mhz",
apple2.CpuClockMhz,
"cpu speed in Mhz, use 0 for full speed")
charRomFile := flag.String(
"charRom",
"apple2/romdumps/Apple2rev7CharGen.rom",
"rom file for the disk drive controller")
useSdl := flag.Bool(
"sdl",
true,
"use SDL")
stdoutScreen := flag.Bool(
"stdout",
false,
"show the text screen on the standard output")
panicSS := flag.Bool(
"panicss",
false,
"panic if a not implemented softswitch is used")
dumpChars := flag.Bool(
"dumpChars",
false,
"shows the character map",
)
flag.Parse()
if *dumpChars {
cg := apple2.NewCharacterGenerator(*charRomFile)
cg.Dump()
return
}
log := false
a := apple2.NewApple2(*romFile, *charRomFile, *cpuClock, *panicSS)
a.AddDisk2(*disk2RomFile, *diskImage)
if *useSdl {
a.ConfigureStdConsole(false, *stdoutScreen)
apple2sdl.SDLRun(a)
} else {
a.ConfigureStdConsole(true, true)
a.Run(log)
}
}