BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / blob / 7cbafe825afe9474334ec1f587aab8d82eb8bc64 / kernel / idt.h

// Related

Nucleus

Barry Interrupt handlers b33d632 (3 years, 3 months ago)
#ifndef KERNEL_IDT_H
#define KERNEL_IDT_H

#include <stdint.h>

/* Structure for an Interrupt Frame */
struct InterruptFrame {
	uint32_t eip, cs, eflags;
};

void init_idt(void);

#endif