izapple2/apple2/apple2.go

175 lines
4.0 KiB
Go
Raw Normal View History

package apple2
import (
"bufio"
"go6502/core6502"
"os"
2019-05-04 17:49:11 +00:00
"time"
)
2019-03-02 19:41:25 +00:00
// Apple2 represents all the components and state of the emulated machine
type Apple2 struct {
2019-05-04 17:49:11 +00:00
cpu *core6502.State
mmu *memoryManager
io *ioC0Page
cg *CharacterGenerator
cards []cardBase
isApple2e bool
panicSS bool
activeSlot int // Slot that has the addressing 0xc800 to 0ccfff
commandChannel chan int
cycleDurationNs float64 // Inverse of the cpu clock in Ghz
}
2019-05-04 17:49:11 +00:00
const (
// CpuClockMhz is the actual Apple II clock speed
CpuClockMhz = 14.318 / 14
cpuClockEuroMhz = 14.238 / 14
)
// NewApple2 instantiates an apple2
2019-05-04 17:49:11 +00:00
func NewApple2(romFile string, charRomFile string, clockMhz float64, panicSS bool) *Apple2 {
var a Apple2
a.mmu = newMemoryManager(&a)
a.cpu = core6502.NewNMOS6502(a.mmu)
a.loadRom(romFile)
2019-04-21 19:04:02 +00:00
if charRomFile != "" {
a.cg = NewCharacterGenerator(charRomFile)
}
2019-05-04 17:49:11 +00:00
a.mmu.resetRomPaging()
a.commandChannel = make(chan int, 100)
2019-04-15 21:13:05 +00:00
a.panicSS = panicSS
2019-05-04 17:49:11 +00:00
if clockMhz <= 0 {
// Full speed
a.cycleDurationNs = 0
} else {
a.cycleDurationNs = 1000.0 / clockMhz
}
// Set the io in 0xc000
2019-03-02 19:41:25 +00:00
a.io = newIoC0Page(&a)
a.mmu.setPage(0xc0, a.io)
return &a
}
2019-03-02 19:41:25 +00:00
// AddDisk2 insterts a DiskII controller on slot 6
2019-03-04 23:00:12 +00:00
func (a *Apple2) AddDisk2(diskRomFile string, diskImage string) {
2019-03-02 19:41:25 +00:00
d := newCardDisk2(diskRomFile)
d.cardBase.insert(a, 6)
2019-03-04 23:00:12 +00:00
if diskImage != "" {
diskette := loadDisquette(diskImage)
//diskette.saveNib(diskImage + "bak")
d.drive[0].insertDiskette(diskette)
2019-03-04 23:00:12 +00:00
}
2019-03-02 19:41:25 +00:00
}
// ConfigureStdConsole uses stdin and stdout to interface with the Apple2
func (a *Apple2) ConfigureStdConsole(stdinKeyboard bool, stdoutScreen bool) {
if !stdinKeyboard && !stdoutScreen {
return
}
// Init frontend
2019-04-14 11:06:35 +00:00
fe := newAnsiConsoleFrontend(a, stdinKeyboard)
if stdinKeyboard {
2019-04-13 18:29:31 +00:00
a.io.setKeyboardProvider(fe)
}
if stdoutScreen {
2019-03-02 19:41:25 +00:00
go fe.textModeGoRoutine()
}
}
2019-05-04 17:49:11 +00:00
// SetKeyboardProvider attaches an external keyboard provider
func (a *Apple2) SetKeyboardProvider(kb KeyboardProvider) {
a.io.setKeyboardProvider(kb)
}
// SendCommand enqueues a command to the emulator thread
func (a *Apple2) SendCommand(command int) {
a.commandChannel <- command
}
func (a *Apple2) executeCommand(command int) {
//TODO
}
// Run starts the Apple2 emulation
func (a *Apple2) Run(log bool) {
// Start the processor
a.cpu.Reset()
2019-05-04 17:49:11 +00:00
startTime := time.Now()
for {
2019-05-04 17:49:11 +00:00
// Run a 6502 step
a.cpu.ExecuteInstruction(log)
2019-05-04 17:49:11 +00:00
// Execute meta commands
commandsPending := true
for commandsPending {
select {
case command := <-a.commandChannel:
a.executeCommand(command)
default:
commandsPending = false
}
}
if a.cycleDurationNs != 0 {
// Wait until next 6502 step has to run
clockDuration := time.Since(startTime)
simulatedDurationNs := time.Duration(float64(a.cpu.GetCycles()) * a.cycleDurationNs)
waitDuration := simulatedDurationNs - clockDuration
if waitDuration > 0 {
time.Sleep(waitDuration)
}
}
}
2019-04-13 18:29:31 +00:00
}
// LoadRom loads a binary file to the top of the memory.
const (
apple2RomSize = 12 * 1024
apple2eRomSize = 16 * 1024
)
func (a *Apple2) loadRom(filename string) {
f, err := os.Open(filename)
if err != nil {
panic(err)
}
defer f.Close()
stats, statsErr := f.Stat()
if statsErr != nil {
panic(err)
}
size := stats.Size()
if size != apple2RomSize && size != apple2eRomSize {
panic("Rom size not supported")
}
bytes := make([]byte, size)
buf := bufio.NewReader(f)
buf.Read(bytes)
romStart := 0
if size == apple2eRomSize {
// The extra 4kb ROM is first in the rom file.
// It starts with 256 unused bytes not mapped to 0xc000.
a.isApple2e = true
extraRomSize := apple2eRomSize - apple2RomSize
a.mmu.physicalROMe = make([]romPage, extraRomSize>>8)
for i := 0; i < extraRomSize; i++ {
a.mmu.physicalROMe[i>>8].burn(uint8(i), bytes[i])
}
romStart = extraRomSize
}
a.mmu.physicalROM = make([]romPage, apple2RomSize>>8)
for i := 0; i < apple2RomSize; i++ {
a.mmu.physicalROM[i>>8].burn(uint8(i), bytes[i+romStart])
}
}