21 lines
327 B
C
21 lines
327 B
C
#ifndef DEV_PS2KBDEV_H_
|
|
#define DEV_PS2KBDEV_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include "dev.h"
|
|
#include "rbuf/rbuf.h"
|
|
#include "spinlock/spinlock.h"
|
|
|
|
typedef struct {
|
|
RBuf rbuf;
|
|
SpinLock spinlock;
|
|
bool init;
|
|
} Ps2KbFastBuf;
|
|
|
|
void ps2kbdev_init(void);
|
|
|
|
extern Ps2KbFastBuf PS2KB_BUF;
|
|
|
|
#endif // DEV_PS2KBDEV_H_
|