Subversion Repositories HelenOS-historic

Rev

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

Rev 1764 Rev 1771
Line 26... Line 26...
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
#include "main.h" 
29
#include "main.h" 
30
#include <printf.h>
30
#include <printf.h>
31
#include "msim.h"
-
 
32
#include "asm.h"
31
#include "asm.h"
33
#include "_components.h"
32
#include "_components.h"
34
 
33
 
35
#define KERNEL_VIRTUAL_ADDRESS 0x80100000
34
#define KERNEL_VIRTUAL_ADDRESS 0x400000
36
 
35
 
37
void bootstrap(void)
36
void bootstrap(void)
38
{
37
{
39
    printf("HelenOS MIPS Bootloader\n");
38
    printf("HelenOS SPARC64 Bootloader\n");
40
   
39
   
41
    component_t components[COMPONENTS];
40
    component_t components[COMPONENTS];
42
    bootinfo_t bootinfo;
41
    bootinfo_t bootinfo;
43
    init_components(components);
42
    init_components(components);
44
   
43