mirror of
https://github.com/saymrwulf/pulp-runtime.git
synced 2026-05-22 22:01:17 +00:00
Fixed syntax problems
This commit is contained in:
parent
aa3e2c31d0
commit
7ffc795560
4 changed files with 7 additions and 7 deletions
|
|
@ -26,7 +26,7 @@
|
|||
#include "archi/riscv/priv_1_10.h"
|
||||
#ifdef __ibex__
|
||||
#include "archi/ibex/mhpm.h"
|
||||
#else #ifdef __cv32e40p__
|
||||
#elif defined(__cv32e40p__)
|
||||
#include "archi/cv32e40p/cv32e40p.h"
|
||||
#else
|
||||
#include "archi/riscv/pcer_v2.h"
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
#ifdef __ibex__
|
||||
#include "hal/ibex/ibex.h"
|
||||
#else #ifdef __cv32e40p__
|
||||
#elif defined(__cv32e40p__)
|
||||
#include "hal/cv32e40p/cv32e40p.h"
|
||||
#else
|
||||
#include "hal/riscv/riscv_v5.h"
|
||||
|
|
|
|||
|
|
@ -247,7 +247,7 @@ void illegal_insn_handler_c(void)
|
|||
{
|
||||
#ifndef __ariane__
|
||||
unsigned int exception_address, insn;
|
||||
#if defined( __riscv__ ) || defined( __ibex__)
|
||||
#if defined( __riscv__ ) || defined( __ibex__) || defined(__cv32e40p__)
|
||||
asm("csrr %0, 0x341" : "=r" (exception_address) : );
|
||||
#else
|
||||
exception_address = hal_spr_read(SPR_EPCR_BASE);
|
||||
|
|
|
|||
|
|
@ -5,11 +5,11 @@ PULP_ARCH_CFLAGS ?= -march=rv32imc
|
|||
PULP_ARCH_LDFLAGS ?= -march=rv32imc
|
||||
PULP_ARCH_OBJDFLAGS ?= -Mmarch=rv32imc
|
||||
else ifdef USE_CV32E40P
|
||||
PULP_LDFLAGS += -mhwloopalign
|
||||
PULP_LDFLAGS +=
|
||||
PULP_CFLAGS += -D__cv32e40p__ -U__riscv__ -UARCHI_CORE_HAS_PULPV2
|
||||
PULP_ARCH_CFLAGS ?= -march=rv32imcxgap9 -mhwloopalign
|
||||
PULP_ARCH_LDFLAGS ?= -march=rv32imcxgap9 -mhwloopalign
|
||||
PULP_ARCH_OBJDFLAGS ?= -Mmarch=rv32imcxgap9 -mhwloopalign
|
||||
PULP_ARCH_CFLAGS ?= -march=rv32imcxgap9
|
||||
PULP_ARCH_LDFLAGS ?= -march=rv32imcxgap9
|
||||
PULP_ARCH_OBJDFLAGS ?= -Mmarch=rv32imcxgap9
|
||||
else
|
||||
PULP_LDFLAGS +=
|
||||
PULP_CFLAGS += -D__riscv__
|
||||
|
|
|
|||
Loading…
Reference in a new issue