This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.include "m2560def.inc" | |
.cseg | |
.org 0x0000 | |
jmp reset | |
.org 0x0008 | |
jmp int0_isr | |
int0_isr: | |
reti |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: zlib-acknowledgement | |
#include <linux/uinput.h> | |
#include <unistd.h> | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#include <time.h> | |
#include <fcntl.h> | |
#include <stdlib.h> |