Subversion Repositories HelenOS-historic

Rev

Rev 843 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 843 Rev 899
Line 31... Line 31...
31
#include <console/chardev.h>
31
#include <console/chardev.h>
32
#include <console/console.h>
32
#include <console/console.h>
33
#include <genarch/fb/fb.h>
33
#include <genarch/fb/fb.h>
34
 
34
 
35
 
35
 
36
/** Initialize console to use ofw output */
36
/** Initialize console to use frame buffer. */
37
void ppc32_console_init(void)
37
void ppc32_console_init(void)
38
{
38
{
39
    /* TODO: PCI detection etc. etc. - this is fine in PearPC for now */
39
    /* TODO: PCI detection etc. etc. - this is fine in PearPC for now */
40
    fb_init(0x84000000,800,600,4);
40
    fb_init(0x84000000,800,600,4);
41
}
41
}