diff options
Diffstat (limited to 'core/init.c')
-rw-r--r-- | core/init.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/init.c b/core/init.c index ab2e271d..85bab775 100644 --- a/core/init.c +++ b/core/init.c @@ -77,6 +77,14 @@ void init(com32sys_t *regs __unused) adjust_screen(); + /* Init the memory subsystem */ + mem_init(); + /* CPU-dependent initialization and related checks. */ check_escapes(); + + /* + * Scan the DMI tables for interesting information. + */ + dmi_init(); } |