2020-12-06 23:47:53 -05:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2020-11-29 07:57:34 -05:00
|
|
|
#include <kernaux/multiboot2.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2022-01-12 23:05:34 -05:00
|
|
|
#include "multiboot2_info_example2.h"
|
2020-11-29 07:57:34 -05:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2022-01-12 22:59:52 -05:00
|
|
|
assert(KernAux_Multiboot2_Info_is_valid(
|
2022-01-12 23:05:34 -05:00
|
|
|
&multiboot2_info_example2.multiboot2_info
|
2022-01-12 22:59:52 -05:00
|
|
|
));
|
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
|
|
|
&multiboot2_info_example2.multiboot2_info,
|
2020-11-29 07:57:34 -05:00
|
|
|
(void (*)(const char *format, ...))printf
|
|
|
|
);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|