Subversion Repositories HelenOS

Compare Revisions

Regard whitespace Rev 1935 → Rev 1936

/trunk/kernel/arch/mips32/src/mips32.c
54,6 → 54,7
#include <arch/debugger.h>
#include <genarch/fb/fb.h>
#include <macros.h>
#include <ddi/device.h>
 
#include <arch/asm/regname.h>
 
102,7 → 103,6
memcpy(NORM_EXC, (char *)exception_entry, EXCEPTION_JUMP_SIZE);
memcpy(CACHE_EXC, (char *)cache_error_entry, EXCEPTION_JUMP_SIZE);
 
interrupt_init();
/*
* Switch to BEV normal level so that exception vectors point to the kernel.
* Clear the error level.
114,17 → 114,13
*/
cp0_mask_all_int();
 
/*
* Unmask hardware clock interrupt.
*/
cp0_unmask_int(TIMER_IRQ);
 
console_init();
debugger_init();
}
 
void arch_post_mm_init(void)
{
interrupt_init();
console_init(device_assign_devno());
#ifdef CONFIG_FB
fb_init(0x12000000, 640, 480, 24, 1920, false); // gxemul framebuffer
#endif