Removed Redeclaration

Removed redeclaration of `isr_regs` in `isr.c`.
This commit is contained in:
2023-09-27 10:13:27 -07:00
committed by GitHub
parent 6d5229a0f7
commit 67fbca715d

View File

@@ -11,12 +11,6 @@ enum
SERIAL_PORT_INTERRUPT = 0x24
};
struct isr_regs
{
// Define the structure of the isr_regs here
// ...
};
// ISR table
void (*isr_table[256])(struct isr_regs *regs);