Wipe out the screen before loading C++

This commit is contained in:
Baptiste Wicht 2013-10-26 17:05:41 +02:00
parent 389a709e9d
commit 0621247e54

View File

@ -565,6 +565,12 @@ date_command:
ret ret
load_command: load_command:
; Fill the entire screen with black
mov rdi, TRAM
mov rcx, 0x14 * 25
mov rax, 0x0720072007200720
rep stosq
call 0x5000 call 0x5000
call clear_command call clear_command