1
0
mirror of https://github.com/deadw00d/AROS.git synced 2025-12-09 15:53:16 +00:00
Files
AROS-v0/arch/i386-pc/bootstrap/cpu.c
Matthias Rustler a58f5dc15c copyright header fixed
copyright sign unified to (C)
$Id$ removed
Lang: removed
2021-05-02 13:46:08 +02:00

17 lines
288 B
C

/*
Copyright (C) 1995-2014, The AROS Development Team. All rights reserved.
*/
#include <aros/kernel.h>
#include <runtime.h>
void setup_mmu(void)
{
}
void kick(int (*entry)(), void *km)
{
kprintf("[BOOT] Entering kernel at 0x%p...\n", entry);
entry(km, AROS_BOOT_MAGIC);
}