DEV Community

Discussion on: Writing My Own Keyboard Driver

Collapse
 
anshu123code profile image
Anshu123code

typedef void (*isr_t)(registers_t *);
wht do this line mean

Collapse
 
hilcon222 profile image
hilcon222

it means that if i say
isr_t huh;
i mean
void (*huh)(registers_t *);