From 5e0b5cd257de90dca950af2e6361690f5fb592e2 Mon Sep 17 00:00:00 2001 From: Kito Cheng Date: Fri, 11 Dec 2020 13:59:02 +0800 Subject: [PATCH] Apply suggestions from Nick Knight Co-authored-by: Nick Knight --- riscv-c-api.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/riscv-c-api.md b/riscv-c-api.md index 23f1115..bd0b1a1 100644 --- a/riscv-c-api.md +++ b/riscv-c-api.md @@ -127,12 +127,12 @@ marco could be used in intrinsic interface or user program directly. | Type Name | Meaning | | --------------------- | ------------------------------------ | -| int_xlen_t | Signed integer type with XLEN bits | -| uint_xlen_t | Unsigned integer type with XLEN bits | +| int_xlen_t | Two's-complement signed integer type with exactly XLEN bits (no padding bits) | +| uint_xlen_t | Unsigned integer type with exactly XLEN bits (no padding bits) | | Macro Name | Value | | --------------------- | ------------------------------------ | -| INT_XLEN_MAX | Minimum value of int_xlen_t | +| INT_XLEN_MAX | Maximum value of int_xlen_t | | INT_XLEN_MIN | Minimum value of int_xlen_t | | UINT_XLEN_MAX | Maximum value of uint_xlen_t | | UINT_XLEN_MIN | Minimum value of uint_xlen_t |