| 13 | } |
| 14 | |
| 15 | void STDIO::print(uint x, uint y, uint8 c, uint8 color) |
| 16 | { |
| 17 | |
| 18 | if (x >= 25 || y >= 80) |
| 19 | { |
| 20 | return; |
| 21 | } |
| 22 | |
| 23 | uint pos = x * 80 + y; |
| 24 | screen[2 * pos] = c; |
| 25 | screen[2 * pos + 1] = color; |
| 26 | } |
| 27 | |
| 28 | void STDIO::print(uint8 c, uint8 color) |
| 29 | { |
no outgoing calls
no test coverage detected