nuttx/arch/risc-v
YAMAMOTO Takashi e99321bf9d risc-v 32-bit: Fix types to match what the compiler expects
spacetanuki% riscv64-unknown-elf-gcc -march=rv32im -mabi=ilp32 -dM -E - < /dev/null | grep INT32_TYPE
    #define __INT32_TYPE__ long int
    #define __UINT32_TYPE__ long unsigned int
    spacetanuki% riscv64-unknown-elf-gcc -march=rv32im -mabi=ilp32 -dM -E - < /dev/null | grep INT64_TYPE
    #define __INT64_TYPE__ long long int
    #define __UINT64_TYPE__ long long unsigned int
    spacetanuki% riscv64-unknown-elf-gcc -dM -E - < /dev/null | grep LP64
    #define __LP64__ 1
    #define _LP64 1
    spacetanuki%
2020-11-19 00:49:56 -08:00
..
include risc-v 32-bit: Fix types to match what the compiler expects 2020-11-19 00:49:56 -08:00
src rv32im: set compressed instruction enabled as default. 2020-11-17 18:53:10 -08:00
Kconfig arch: Add custom arch chip build support 2020-10-20 14:48:16 +08:00