Rev 3549 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3549 | Rev 3582 | ||
---|---|---|---|
Line 34... | Line 34... | ||
34 | 34 | ||
35 | /** @file |
35 | /** @file |
36 | */ |
36 | */ |
37 | 37 | ||
38 | #include <genarch/nofb.h> |
38 | #include <genarch/nofb.h> |
- | 39 | #include <stdio.h> // DELETE!!! |
|
39 | 40 | ||
40 | #define KEY_F1 0x504f1bL |
41 | #define KEY_F1 0x504f1bL |
41 | #define KEY_F2 0x514f1bL |
42 | #define KEY_F2 0x514f1bL |
42 | #define KEY_F3 0x524f1bL |
43 | #define KEY_F3 0x524f1bL |
43 | #define KEY_F4 0x534f1bL |
44 | #define KEY_F4 0x534f1bL |
Line 176... | Line 177... | ||
176 | keybuffer_push(keybuffer, (buf >> 16) &0xff); |
177 | keybuffer_push(keybuffer, (buf >> 16) &0xff); |
177 | keybuffer_push(keybuffer, (buf >> 24) &0xff); |
178 | keybuffer_push(keybuffer, (buf >> 24) &0xff); |
178 | buf = count = 0; |
179 | buf = count = 0; |
179 | return 1; |
180 | return 1; |
180 | } |
181 | } |
- | 182 | ||
181 | return 1; |
183 | return 1; |
182 | } |
184 | } |
183 | 185 | ||
184 | /** @} |
186 | /** @} |
185 | */ |
187 | */ |
186 | 188 |