Subversion Repositories HelenOS

Rev

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

Rev 2787 Rev 2918
Line 55... Line 55...
55
#include <arch/bios/bios.h>
55
#include <arch/bios/bios.h>
56
 
56
 
57
#include <interrupt.h>
57
#include <interrupt.h>
58
#include <ddi/irq.h>
58
#include <ddi/irq.h>
59
#include <arch/debugger.h>
59
#include <arch/debugger.h>
-
 
60
#include <arch/breakpoint.h>
60
#include <proc/thread.h>
61
#include <proc/thread.h>
61
#include <syscall/syscall.h>
62
#include <syscall/syscall.h>
62
#include <console/console.h>
63
#include <console/console.h>
63
#include <ddi/device.h>
64
#include <ddi/device.h>
64
 
65
 
Line 95... Line 96...
95
#endif
96
#endif
96
            ega_init(); /* video */
97
            ega_init(); /* video */
97
       
98
       
98
        /* Enable debugger */
99
        /* Enable debugger */
99
        debugger_init();
100
        debugger_init();
-
 
101
        /* Enable INT3 breakpoint handler */
-
 
102
        breakpoint_init();
100
        /* Merge all memory zones to 1 big zone */
103
        /* Merge all memory zones to 1 big zone */
101
        zone_merge_all();
104
        zone_merge_all();
102
    }
105
    }
103
}
106
}
104
 
107