summaryrefslogtreecommitdiff
path: root/src/boot/mod_mem_map.c
blob: 701a12e9076a9b7bb55eb5b2c698bfb92541e358 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "mod_mem_map.h"

#include "../output/vga_character.h"

__asm__(".code16gcc\n");

void populate_memory_map(void) {
  vga_graphics_write_str("pretend i populated the memory map, ok?");
  vga_graphics_write_str("           system_memory_map = ");
  vga_graphics_byte_hex(0x10);
}