598ba43742
lib/debug.c and use that one. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3653 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
37 lines
616 B
C
37 lines
616 B
C
#define ASSEMBLY 1
|
|
|
|
#include <stdint.h>
|
|
#include <device/pci_def.h>
|
|
#include <device/pci_ids.h>
|
|
#include <arch/io.h>
|
|
#include <device/pnp_def.h>
|
|
#include <arch/romcc_io.h>
|
|
#include <arch/hlt.h>
|
|
#include "option_table.h"
|
|
#include "pc80/mc146818rtc_early.c"
|
|
#include "pc80/serial.c"
|
|
#include "arch/i386/lib/console.c"
|
|
|
|
/*
|
|
*/
|
|
void udelay(int usecs)
|
|
{
|
|
int i;
|
|
for(i = 0; i < usecs; i++)
|
|
outb(i&0xff, 0x80);
|
|
}
|
|
|
|
#include "lib/delay.c"
|
|
#include "cpu/x86/lapic/boot_cpu.c"
|
|
|
|
static void main(void)
|
|
{
|
|
/* init_timer();*/
|
|
outb(5, 0x80);
|
|
|
|
uart_init();
|
|
console_init();
|
|
|
|
//print_pci_devices();
|
|
//dump_pci_devices();
|
|
}
|