]> rtime.felk.cvut.cz Git - l4.git/blob - kernel/fiasco/src/kern/sparc/boot_info-sparc.cpp
update
[l4.git] / kernel / fiasco / src / kern / sparc / boot_info-sparc.cpp
1 INTERFACE [sparc]:
2
3 #include "types.h"
4 #include "sparc_types.h"
5
6 EXTENSION class Boot_info 
7 {
8   public:
9     /**
10      * Return memory-mapped base address of uart/pic
11      */
12     static Address uart_base();
13     static Address pic_base();
14 };
15
16
17 //------------------------------------------------------------------------------
18 IMPLEMENTATION [sparc]:
19
20 #include "boot_info.h"
21 #include <string.h>
22
23 IMPLEMENT static 
24 void Boot_info::init()
25 {
26 }
27
28