blob: 410a4286bf39b27f54bd4d641cb35073dddf4c0e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
#ifndef KMI_RISCV_MEM_H
#define KMI_RISCV_MEM_H
/**
* @file pmem.h
* riscv64-specific general memory stuff.
*/
/** Base page size is always 4K, use a constant for better optimizations here
* and there */
#define BASE_PAGE_SIZE 4096
#endif /* KMI_RISCV_MEM_H */
|