diff options
author | tmk <nobody@nowhere> | 2011-02-21 15:43:17 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2011-02-22 03:09:14 +0900 |
commit | fb8d23c60c757d5d9c2270cb0123a53be2049a28 (patch) | |
tree | 2f5d695f9d501468dc83f4861e7367cdf905ed3f /ps2_usb/sendchar_dummy.c | |
parent | 47f5d8b545eec12ca74d8e7048bb5daa290d937e (diff) |
integrate V-USB support into ps2_usb
Diffstat (limited to 'ps2_usb/sendchar_dummy.c')
-rw-r--r-- | ps2_usb/sendchar_dummy.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ps2_usb/sendchar_dummy.c b/ps2_usb/sendchar_dummy.c new file mode 100644 index 0000000000..8c9e583f12 --- /dev/null +++ b/ps2_usb/sendchar_dummy.c @@ -0,0 +1,8 @@ +#include <stdint.h> +#include "sendchar.h" + + +int8_t sendchar(uint8_t c) +{ + return 1; +} |