9os

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit a71b8e7bb7ede0884ff47116bdefc00a1700762d
parent 57efc95750bc7852b06c67a2c40dec9334b8df11
Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com>
Date:   Fri, 18 Nov 2022 20:17:46 +0100

os9/hosted: Add debug info in mappings

Diffstat:
Msrc/os9/hosted/mmu.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/os9/hosted/mmu.c b/src/os9/hosted/mmu.c @@ -1,8 +1,11 @@ #include <os9/os9.h> +#include <libk.h> + int vmap(phyaddr_t pa, uintptr_t va, int flags) { + dbg("vmap %llx -> %llx\n", (long long) pa, (long long) va); return 0; }