BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / blob / 4a9f8b43304c3723fc5648ab8dd659f9f81c110f / include / nucleus / cpu.h

// Related

Nucleus

Barry Global Descriptor Tables b9a1b73 (3 years, 3 months ago)
#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