#ifndef _NUCLEUS_CPU_H #define _NUCLEUS_CPU_H /* Structure for an Interrupt Frame */ struct InterruptFrame { uint32_t eip, cs, eflags; }; #define CPUID 0 #define MAX_CPUS 1 #endif