19 lines
190 B
C++
19 lines
190 B
C++
#ifndef INTERRUPTS_H
|
|
#define INTERRUPTS_H
|
|
|
|
namespace kernel
|
|
{
|
|
class Interrupts
|
|
{
|
|
public:
|
|
|
|
Interrupts();
|
|
|
|
void enable();
|
|
|
|
void disable();
|
|
|
|
};
|
|
}
|
|
|
|
#endif |