Removed Redeclaration

Removed redeclaration of `isr_regs` in `isr.c`.
This commit is contained in:
Arron David Nelson 2023-09-27 10:13:27 -07:00 committed by GitHub
parent 6d5229a0f7
commit 67fbca715d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);