blob: 3089d2944003da8056963ec95db783d84233962d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#include <multiboot.h>
#include <smbios/smbios.h>
#include <stddef.h>
#include <system.h>
void smbios_init(struct multiboot_tag_smbios *tag)
{
log("%s", ((struct smbios_0 *)tag->tables)->vendor);
return;
}
|