| 98 | } |
| 99 | |
| 100 | void STDIO::rollUp() |
| 101 | { |
| 102 | uint length; |
| 103 | length = 25 * 80; |
| 104 | for (uint i = 80; i < length; ++i) |
| 105 | { |
| 106 | screen[2 * (i - 80)] = screen[2 * i]; |
| 107 | screen[2 * (i - 80) + 1] = screen[2 * i + 1]; |
| 108 | } |
| 109 | |
| 110 | for (uint i = 24 * 80; i < length; ++i) |
| 111 | { |
| 112 | screen[2 * i] = ' '; |
| 113 | screen[2 * i + 1] = 0x07; |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | int STDIO::print(const char *const str) |
| 118 | { |
nothing calls this directly
no outgoing calls
no test coverage detected