1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Move local variable declaration to top of block

This commit is contained in:
Matthew D. Steele 2022-01-08 16:29:42 -05:00
parent 92bfbeb8ab
commit 1f6bc6240f

View File

@ -317,6 +317,8 @@ void ParaVirtInit (unsigned aArgStart, unsigned char aSPAddr)
void ParaVirtHooks (CPURegs* Regs)
/* Potentially execute paravirtualization hooks */
{
unsigned lo;
/* Check for paravirtualization address range */
if (Regs->PC < PARAVIRT_BASE ||
Regs->PC >= PARAVIRT_BASE + sizeof (Hooks) / sizeof (Hooks[0])) {
@ -327,6 +329,6 @@ void ParaVirtHooks (CPURegs* Regs)
Hooks[Regs->PC - PARAVIRT_BASE] (Regs);
/* Simulate RTS */
unsigned lo = Pop(Regs);
lo = Pop(Regs);
Regs->PC = lo + (Pop(Regs) << 8) + 1;
}