| 186 | } |
| 187 | |
| 188 | void InitVideo(){ |
| 189 | Video::Initialize(videoMode); |
| 190 | Video::DrawString("Starting Lemon x64...", 0, 0, 255, 255, 255); |
| 191 | |
| 192 | Log::SetVideoConsole(NULL); |
| 193 | |
| 194 | if(debugMode){ |
| 195 | con = new VideoConsole(0, (videoMode.height / 3) * 2, videoMode.width, videoMode.height / 3); |
| 196 | Log::SetVideoConsole(con); |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | void InitExtra(){ |
| 201 | Log::Info("Initializing ACPI..."); |
no test coverage detected