From 4050acad01b9bb902c0190d1f44ea5c27d678aad Mon Sep 17 00:00:00 2001 From: thrust26 Date: Thu, 12 Oct 2017 21:11:39 +0200 Subject: [PATCH] spelling and ordering of pseudo-ops fixed --- src/debugger/Debugger.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debugger/Debugger.cxx b/src/debugger/Debugger.cxx index bb9cb726b..372658036 100644 --- a/src/debugger/Debugger.cxx +++ b/src/debugger/Debugger.cxx @@ -726,10 +726,10 @@ Debugger::BuiltinFunction Debugger::ourBuiltinFunctions[NUM_BUILTIN_FUNCS] = { Debugger::PseudoRegister Debugger::ourPseudoRegisters[NUM_PSEUDO_REGS] = { { "_bank", "Currently selected bank" }, { "_cclocks", "Color clocks on current scanline" }, + { "_cycleshi", "Higher 32 bits of number of cycles since emulation started" }, + { "_cycleslo", "Lower 32 bits of number of cycles since emulation started" }, { "_fcount", "Number of frames since emulation started" }, { "_fcycles", "Number of cycles since frame started" }, - { "_cyclesLo", "Lower 32 bits of number of cycles since emulation started"}, - { "_cyclesHi", "Higher 32 bits of number of cycles since emulation started"}, { "_rwport", "Address at which a read from a write port occurred" }, { "_scan", "Current scanline count" }, { "_scycles", "Number of cycles in current scanline" },