2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
6 #include <bootconsole.h>
8 void fb_SetMirror(char *addr
)
13 * Don't use memcpy() here because libc memcpy() may use exec.library/CopyMem()
14 * which can be not available yet.
18 for (i
= 0; i
< scr_Width
* scr_Height
; i
++)
19 addr
[i
] = fb_Mirror
[i
];