mirror of
https://github.com/ivanizag/izapple2.git
synced 2024-10-31 20:09:02 +00:00
246 lines
5.9 KiB
Go
246 lines
5.9 KiB
Go
package izapple2
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/ivanizag/iz6502"
|
|
)
|
|
|
|
// Apple2 represents all the components and state of the emulated machine
|
|
type Apple2 struct {
|
|
Name string
|
|
cpu *iz6502.State
|
|
mmu *memoryManager
|
|
io *ioC0Page
|
|
cg *CharacterGenerator
|
|
cards [8]Card
|
|
softVideoSwitch *SoftVideoSwitch
|
|
isApple2e bool
|
|
commandChannel chan int
|
|
cycleDurationNs float64 // Current speed. Inverse of the cpu clock in Ghz
|
|
fastMode bool
|
|
fastRequestsCounter int
|
|
profile bool
|
|
showSpeed bool
|
|
paused bool
|
|
tracers []executionTracer
|
|
forceCaps bool
|
|
}
|
|
|
|
type executionTracer interface {
|
|
inspect()
|
|
}
|
|
|
|
const (
|
|
// CPUClockMhz is the actual Apple II clock speed
|
|
CPUClockMhz = 14.318 / 14
|
|
cpuClockEuroMhz = 14.238 / 14
|
|
)
|
|
|
|
const (
|
|
maxWaitDuration = 100 * time.Millisecond
|
|
cpuSpinLoops = 100
|
|
)
|
|
|
|
// Run starts the Apple2 emulation
|
|
func (a *Apple2) Run() {
|
|
|
|
// Start the processor
|
|
a.cpu.Reset()
|
|
referenceTime := time.Now()
|
|
speedReferenceTime := referenceTime
|
|
speedReferenceCycles := uint64(0)
|
|
|
|
for {
|
|
// Run a 6502 step
|
|
if !a.paused {
|
|
for i := 0; i < cpuSpinLoops; i++ {
|
|
// Conditional tracing
|
|
//pc, _ := a.cpu.GetPCAndSP()
|
|
//a.cpu.SetTrace((pc >= 0xc300 && pc <= 0xc400) || (pc >= 0xc800 && pc <= 0xce00))
|
|
|
|
// Execution
|
|
a.cpu.ExecuteInstruction()
|
|
|
|
// Special tracing
|
|
a.executionTrace()
|
|
}
|
|
} else {
|
|
time.Sleep(200 * time.Millisecond)
|
|
}
|
|
|
|
// Execute meta commands
|
|
commandsPending := true
|
|
for commandsPending {
|
|
select {
|
|
case command := <-a.commandChannel:
|
|
switch command {
|
|
case CommandKill:
|
|
return
|
|
case CommandPauseUnpauseEmulator:
|
|
a.paused = !a.paused
|
|
referenceTime = time.Now()
|
|
speedReferenceTime = referenceTime
|
|
default:
|
|
// Execute the other commands
|
|
a.executeCommand(command)
|
|
}
|
|
default:
|
|
commandsPending = false
|
|
}
|
|
}
|
|
|
|
if a.cycleDurationNs != 0 && a.fastRequestsCounter <= 0 {
|
|
// Wait until next 6502 step has to run
|
|
clockDuration := time.Since(referenceTime)
|
|
simulatedDuration := time.Duration(float64(a.cpu.GetCycles()) * a.cycleDurationNs)
|
|
waitDuration := simulatedDuration - clockDuration
|
|
if waitDuration > maxWaitDuration || -waitDuration > maxWaitDuration {
|
|
// We have to wait too long or are too much behind. Let's fast forward
|
|
referenceTime = referenceTime.Add(-waitDuration)
|
|
waitDuration = 0
|
|
}
|
|
if waitDuration > 0 {
|
|
time.Sleep(waitDuration)
|
|
}
|
|
}
|
|
|
|
if a.showSpeed && a.cpu.GetCycles()-speedReferenceCycles > 1000000 {
|
|
// Calculate speed in MHz every million cycles
|
|
newTime := time.Now()
|
|
newCycles := a.cpu.GetCycles()
|
|
elapsedCycles := float64(newCycles - speedReferenceCycles)
|
|
freq := 1000.0 * elapsedCycles / float64(newTime.Sub(speedReferenceTime).Nanoseconds())
|
|
fmt.Printf("Freq: %f Mhz\n", freq)
|
|
speedReferenceTime = newTime
|
|
speedReferenceCycles = newCycles
|
|
}
|
|
}
|
|
}
|
|
|
|
func (a *Apple2) reset() {
|
|
a.cpu.Reset()
|
|
a.mmu.reset()
|
|
for _, c := range a.cards {
|
|
if c != nil {
|
|
c.reset()
|
|
}
|
|
}
|
|
}
|
|
|
|
// IsPaused returns true when emulator is paused
|
|
func (a *Apple2) IsPaused() bool {
|
|
return a.paused
|
|
}
|
|
|
|
func (a *Apple2) setProfiling(value bool) {
|
|
a.profile = value
|
|
}
|
|
|
|
// IsProfiling returns true when profiling
|
|
func (a *Apple2) IsProfiling() bool {
|
|
return a.profile
|
|
}
|
|
|
|
// SetForceCaps allows the caps state to be toggled at runtime
|
|
func (a *Apple2) SetForceCaps(value bool) {
|
|
a.forceCaps = value
|
|
}
|
|
|
|
// IsForceCaps returns true when all letters are forced to upper case
|
|
func (a *Apple2) IsForceCaps() bool {
|
|
return a.forceCaps
|
|
}
|
|
|
|
const (
|
|
// CommandToggleSpeed toggles cpu speed between full speed and actual Apple II speed
|
|
CommandToggleSpeed = iota + 1
|
|
// CommandShowSpeed toggles printinf the current freq in Mhz
|
|
CommandShowSpeed
|
|
// CommandDumpDebugInfo dumps useful info
|
|
CommandDumpDebugInfo
|
|
// CommandNextCharGenPage cycles the CharGen page if several
|
|
CommandNextCharGenPage
|
|
// CommandToggleCPUTrace toggle tracing of CPU execution
|
|
CommandToggleCPUTrace
|
|
// CommandKill stops the cpu execution loop
|
|
CommandKill
|
|
// CommandReset executes a 6502 reset
|
|
CommandReset
|
|
// CommandPauseUnpauseEmulator allows the Pause button to freeze the emulator for a coffee break
|
|
CommandPauseUnpauseEmulator
|
|
)
|
|
|
|
// SendCommand enqueues a command to the emulator thread
|
|
func (a *Apple2) SendCommand(command int) {
|
|
a.commandChannel <- command
|
|
}
|
|
|
|
func (a *Apple2) executeCommand(command int) {
|
|
switch command {
|
|
case CommandToggleSpeed:
|
|
if a.cycleDurationNs == 0 {
|
|
//fmt.Println("Slow")
|
|
a.cycleDurationNs = 1000.0 / CPUClockMhz
|
|
} else {
|
|
//fmt.Println("Fast")
|
|
a.cycleDurationNs = 0
|
|
}
|
|
case CommandShowSpeed:
|
|
a.showSpeed = !a.showSpeed
|
|
case CommandDumpDebugInfo:
|
|
a.dumpDebugInfo()
|
|
case CommandNextCharGenPage:
|
|
a.cg.nextPage()
|
|
fmt.Printf("Chargen page %v\n", a.cg.page)
|
|
case CommandToggleCPUTrace:
|
|
a.cpu.SetTrace(!a.cpu.GetTrace())
|
|
case CommandReset:
|
|
a.reset()
|
|
}
|
|
}
|
|
|
|
func (a *Apple2) requestFastMode() {
|
|
// Note: if the fastMode is shorter than maxWaitDuration, there won't be any gain.
|
|
if a.fastMode {
|
|
a.fastRequestsCounter++
|
|
}
|
|
}
|
|
|
|
func (a *Apple2) releaseFastMode() {
|
|
if a.fastMode {
|
|
a.fastRequestsCounter--
|
|
}
|
|
}
|
|
|
|
func (a *Apple2) executionTrace() {
|
|
if a.tracers != nil {
|
|
for _, v := range a.tracers {
|
|
v.inspect()
|
|
}
|
|
}
|
|
}
|
|
|
|
func (a *Apple2) dumpDebugInfo() {
|
|
// See "Apple II Monitors Peeled"
|
|
pageZeroSymbols := map[int]string{
|
|
0x36: "CSWL",
|
|
0x37: "CSWH",
|
|
0x38: "KSWL",
|
|
0x39: "KSWH",
|
|
0xe2: "ACJVAFLDL", // Apple Pascal
|
|
0xe3: "ACJVAFLDH", // Apple Pascal
|
|
0xec: "JVBFOLDL", // Apple Pascal
|
|
0xed: "JVBFOLDH", // Apple Pascal
|
|
0xee: "JVAFOLDL", // Apple Pascal
|
|
0xef: "JVAFOLDH", // Apple Pascal
|
|
}
|
|
|
|
fmt.Printf("Page zero values:\n")
|
|
for _, k := range []int{0x36, 0x37, 0x38, 0x39, 0xe2, 0xe3, 0xec, 0xed, 0xee, 0xef} {
|
|
d := a.mmu.physicalMainRAM.data[k]
|
|
fmt.Printf(" %v(0x%x): 0x%02x\n", pageZeroSymbols[k], k, d)
|
|
}
|
|
}
|