matos/drivers/zero.h

12 lines
216 B
C
Raw Permalink Normal View History

2023-03-24 23:43:09 +01:00
#pragma once
#include "types.h"
2023-11-10 09:01:55 +01:00
#include "uaddrspace.h"
2023-03-24 23:43:09 +01:00
#include <stddef.h>
#include <stdint.h>
int zeroSetup();
2023-11-10 09:01:55 +01:00
int zeroMmap(struct uAddrSpace *as, uaddr_t *uaddr, size_t size, uint32_t rights, uint32_t flags);