diff options
| author | Alejandro Sior <aho@sior.be> | 2022-07-26 14:06:40 +0200 |
|---|---|---|
| committer | Alejandro Sior <aho@sior.be> | 2022-07-26 14:06:40 +0200 |
| commit | e0fbf5ca9599cb7599731fe48573e97d05fa38da (patch) | |
| tree | 2c3b3925c49fd2da68086c6cb4b06a891e823bd5 /mem/meson.build | |
| parent | c4e9a8ba15391ae5f1c820744ff1b03544d63467 (diff) | |
mem/vmap: add basic virtual memory management abstraction
Diffstat (limited to 'mem/meson.build')
| -rw-r--r-- | mem/meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mem/meson.build b/mem/meson.build index ec4a984..e4db123 100644 --- a/mem/meson.build +++ b/mem/meson.build @@ -1,6 +1,7 @@ mem_src = [ 'allocator.c', - 'framer.c' + 'framer.c', + 'vmap.c' ] mem = static_library('mem', mem_src, include_directories: kernel_inc) |
