Gopher2600/debugger/govern/quantum.go
JetSetIlly 9f6cbdad58 added CYCLE quantum
updated QUANTUM and STEP commands to accoodate new quantum

control window changed to support the three quantum options

improved/corrected the conditions under which the ONSTEP command is run

disassembly.ExecutedEntry() updates existing entry
2023-11-27 07:47:30 +00:00

40 lines
1.1 KiB
Go

// This file is part of Gopher2600.
//
// Gopher2600 is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Gopher2600 is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Gopher2600. If not, see <https://www.gnu.org/licenses/>.
package govern
// Quantum specifies the step granularity of the emulator.
type Quantum int
// List of valid QuantumModes.
const (
QuantumInstruction Quantum = iota
QuantumCycle
QuantumClock
)
func (q Quantum) String() string {
switch q {
case QuantumInstruction:
return "Instruction"
case QuantumCycle:
return "Cycle"
case QuantumClock:
return "Clock"
default:
return "unrecognised quantum"
}
}