1 /* 2 * Copyright 2009-2019 Haiku, Inc. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _KERNEL_ARCH_RISCV64_VM_H 6 #define _KERNEL_ARCH_RISCV64_VM_H 7 8 /* This many pages will be read/written on I/O if possible */ 9 10 #define NUM_IO_PAGES 4 11 /* 16 kB */ 12 13 #define PAGE_SHIFT 12 14 15 #endif /* _KERNEL_ARCH_RISCV64_VM_H */ 16 17