Skip to content

Commit

Permalink
fix spelling
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.code.sf.net/p/vice-emu/code/trunk@45224 379a1393-f5fb-40a0-bcee-ef074d9b53f7
  • Loading branch information
mrdudz committed Jul 13, 2024
1 parent 03f09c3 commit 55cf74f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vice/src/core/ciacore.c
Original file line number Diff line number Diff line change
Expand Up @@ -2576,7 +2576,7 @@ int ciacore_dump(cia_context_t *cia_context)
mon_out("\nTimer A IRQ: %s running: %s mode: %s\n",
(cia_context->c_cia[CIA_ICR] & 1) ? "on" : "off",
ciacore_peek(cia_context, 0x0e) & 1 ? "yes" : "no",
ciacore_peek(cia_context, 0x0e) & (1 << 3) ? "one-shot" : "continues");
ciacore_peek(cia_context, 0x0e) & (1 << 3) ? "one-shot" : "continuous");
mon_out("Timer A counts: %s PB6 output: %s (%s)\n",
ciacore_peek(cia_context, 0x0e) & (1 << 5) ? "CNT transitions" : "System clock",
ciacore_peek(cia_context, 0x0e) & (1 << 1) ? "yes" : "no",
Expand All @@ -2588,7 +2588,7 @@ int ciacore_dump(cia_context_t *cia_context)
mon_out("Timer B IRQ: %s running: %s mode: %s\n",
(cia_context->c_cia[CIA_ICR] & (1 << 1)) ? "on" : "off",
ciacore_peek(cia_context, 0x0f) & 1 ? "yes" : "no",
ciacore_peek(cia_context, 0x0f) & (1 << 3) ? "one-shot" : "continues");
ciacore_peek(cia_context, 0x0f) & (1 << 3) ? "one-shot" : "continuous");
switch (ciacore_peek(cia_context, 0x0f) & (3 << 5)) {
default:
case (0 << 5): s = "System clock"; break;
Expand Down

0 comments on commit 55cf74f

Please sign in to comment.