#ifndef _INPUT_H_
#define _INPUT_H_

#include <stdint.h>

typedef struct {
	uint8_t scancode;
	uint8_t isNew;
} KEYSTATE_t;

#endif
