Ignore:
Timestamp:
Jul 7, 2017, 9:16:50 AM (7 years ago)
Author:
max@…
Message:

use a demultiplexer to get the channel on the serial port, and
make x86_printf print both on the VGA and COM1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/hal/x86_64/core/x86_printf.c

    r145 r154  
    2323#include <hal_boot.h>
    2424#include <hal_internal.h>
     25#include <hal_apic.h>
    2526
    2627#include <memcpy.h>
     
    7576void x86_putc(char c)
    7677{
     78        hal_com_send(0, c);
     79
    7780        if (c == '\n') {
    7881                cons_ptr = roundup(cons_ptr, CONS_X_SIZE * 2);
Note: See TracChangeset for help on using the changeset viewer.