blob: 68d312d69451bbff3e53cafbd2940692751cc65f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2021 - 2022, Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
#ifndef KMI_RISCV_TYPES_H
#define KMI_RISCV_TYPES_H
/**
* @file types.h
* riscv64 definitions of arch-specific data types, possibly made redundant by
* \ref include/kmi/types.h but kept around just to be sure.
*/
#include <kmi/types.h>
/** Virtual memory address. */
typedef uintptr_t vm_t;
/** Physical memory address. */
typedef uintptr_t pm_t;
#endif /* KMI_RISCV_TYPES_H */
|