1/*
2 * Copyright 2011, Michael Lotz, mmlr@mlotz.ch.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _KERNEL_ARCH_x86_PIC_H
6#define _KERNEL_ARCH_x86_PIC_H
7
8#include <SupportDefs.h>
9
10void pic_init();
11void pic_disable(uint16& enabledInterrupts);
12
13#endif // _KERNEL_ARCH_x86_PIC_H
14