2020-12-06 23:46:37 -05:00
|
|
|
#ifdef HAVE_CONFIG_H
|
2020-11-30 06:40:33 -05:00
|
|
|
#include "config.h"
|
2020-12-06 23:46:37 -05:00
|
|
|
#endif
|
2020-11-30 06:40:33 -05:00
|
|
|
|
2021-12-20 01:14:40 -05:00
|
|
|
#ifdef ASM_I386
|
|
|
|
#include <kernaux/asm/i386.h>
|
2020-11-30 06:32:12 -05:00
|
|
|
#endif
|
|
|
|
|
2022-01-09 23:45:02 -05:00
|
|
|
#include <kernaux/console.h>
|
2021-12-15 05:45:40 -05:00
|
|
|
#include <kernaux/libc.h>
|
2020-12-06 19:09:47 -05:00
|
|
|
#include <kernaux/printf.h>
|
2020-11-30 06:32:12 -05:00
|
|
|
|
2020-12-05 20:41:31 -05:00
|
|
|
void kernaux_console_putc(const char c __attribute__((unused)))
|
|
|
|
{
|
2021-12-20 01:14:40 -05:00
|
|
|
#ifdef ASM_I386
|
|
|
|
kernaux_asm_i386_outportb(0x3F8, c);
|
2020-11-30 06:32:12 -05:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2021-12-26 01:15:49 -05:00
|
|
|
void kernaux_console_print(const char *const s)
|
|
|
|
{
|
|
|
|
for (const char *c = s; *c; ++c) {
|
|
|
|
kernaux_console_putc(*c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void kernaux_console_printf(const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
va_start(va, format);
|
|
|
|
kernaux_printf_va(kernaux_console_putc, format, va);
|
|
|
|
va_end(va);
|
|
|
|
}
|
|
|
|
|
2020-11-30 06:32:12 -05:00
|
|
|
void kernaux_console_puts(const char *const s)
|
|
|
|
{
|
|
|
|
kernaux_console_print(s);
|
|
|
|
kernaux_console_putc('\n');
|
|
|
|
}
|
|
|
|
|
2021-12-16 10:26:16 -05:00
|
|
|
void kernaux_console_write(const char *const data, const size_t size)
|
2020-12-05 20:41:31 -05:00
|
|
|
{
|
2021-12-16 10:26:16 -05:00
|
|
|
for (size_t i = 0; i < size; i++) {
|
2020-11-30 06:32:12 -05:00
|
|
|
kernaux_console_putc(data[i]);
|
|
|
|
}
|
|
|
|
}
|