2020-12-06 23:47:53 -05:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2022-12-08 21:59:54 -05:00
|
|
|
#define KERNAUX_ACCESS_PROTECTED
|
|
|
|
|
|
|
|
#include <kernaux/generic/display.h>
|
|
|
|
#include <kernaux/macro.h>
|
2020-11-28 16:24:50 -05:00
|
|
|
#include <kernaux/multiboot2.h>
|
|
|
|
|
2020-11-29 07:57:34 -05:00
|
|
|
#include <assert.h>
|
2022-02-01 22:09:54 -05:00
|
|
|
#include <stdarg.h>
|
2020-11-28 16:24:50 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2022-01-12 23:05:34 -05:00
|
|
|
#include "multiboot2_info_example1.h"
|
2020-11-28 16:24:50 -05:00
|
|
|
|
2022-12-08 21:59:54 -05:00
|
|
|
static void my_putc(void *display KERNAUX_UNUSED, char c)
|
|
|
|
{
|
|
|
|
putchar(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void my_vprintf(void *display KERNAUX_UNUSED, const char *format, va_list va)
|
2022-02-01 22:09:54 -05:00
|
|
|
{
|
|
|
|
vprintf(format, va);
|
|
|
|
}
|
|
|
|
|
2022-12-08 21:59:54 -05:00
|
|
|
static const struct KernAux_Display display = {
|
|
|
|
.putc = my_putc,
|
|
|
|
.vprintf = my_vprintf,
|
|
|
|
};
|
|
|
|
|
2022-06-20 14:01:56 -04:00
|
|
|
void test_main()
|
2020-11-28 16:24:50 -05:00
|
|
|
{
|
2022-01-12 22:59:52 -05:00
|
|
|
assert(KernAux_Multiboot2_Info_is_valid(
|
2022-01-12 23:05:34 -05:00
|
|
|
(struct KernAux_Multiboot2_Info*)multiboot2_info_example1
|
2020-11-29 07:57:34 -05:00
|
|
|
));
|
|
|
|
|
2022-01-12 22:59:52 -05:00
|
|
|
KernAux_Multiboot2_Info_print(
|
2022-01-12 23:05:34 -05:00
|
|
|
(struct KernAux_Multiboot2_Info*)multiboot2_info_example1,
|
2022-12-08 21:59:54 -05:00
|
|
|
&display
|
2020-11-28 16:24:50 -05:00
|
|
|
);
|
|
|
|
}
|