From 8ba2c960befb23e9741326feb8f7342c34635165 Mon Sep 17 00:00:00 2001 From: stnolting <22944758+stnolting@users.noreply.github.com> Date: Wed, 27 Apr 2022 12:09:27 +0200 Subject: [PATCH] remove A extension from ISA string --- .github/workflows/Processor.yml | 4 ++-- do.py | 2 +- sw/example/processor_check/run_check.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Processor.yml b/.github/workflows/Processor.yml index 3d53881a0..8ad304f2f 100644 --- a/.github/workflows/Processor.yml +++ b/.github/workflows/Processor.yml @@ -60,7 +60,7 @@ jobs: USER_FLAGS+=-DRUN_CHECK USER_FLAGS+=-DUART0_SIM_MODE USER_FLAGS+=-DSUPPRESS_OPTIONAL_UART_PRINT - MARCH=rv32imac + MARCH=rv32imc info all @@ -121,7 +121,7 @@ jobs: USER_FLAGS+=-DRUN_CHECK \ USER_FLAGS+=-DUART0_SIM_MODE \ USER_FLAGS+=-DSUPPRESS_OPTIONAL_UART_PRINT \ - MARCH=rv32imac \ + MARCH=rv32imc \ info \ all diff --git a/do.py b/do.py index 8be918229..34cfb6341 100755 --- a/do.py +++ b/do.py @@ -27,7 +27,7 @@ def task_BuildAndInstallSoftwareFrameworkTests(): # Compile and install test application # Redirect UART0 TX to text.io simulation output via user flag "echo 'Compiling and installing CPU (/Processor) test application'", - "make -C sw/example/processor_check clean_all USER_FLAGS+=-DRUN_CHECK USER_FLAGS+=-DUART0_SIM_MODE USER_FLAGS+=-DUART1_SIM_MODE MARCH=rv32imac info all", + "make -C sw/example/processor_check clean_all USER_FLAGS+=-DRUN_CHECK USER_FLAGS+=-DUART0_SIM_MODE USER_FLAGS+=-DUART1_SIM_MODE MARCH=rv32imc info all", ], "doc": "Build all sw/example/*; install bootloader and processor check", } diff --git a/sw/example/processor_check/run_check.sh b/sw/example/processor_check/run_check.sh index 05cb33702..b06e0ab30 100644 --- a/sw/example/processor_check/run_check.sh +++ b/sw/example/processor_check/run_check.sh @@ -3,4 +3,4 @@ set -e echo "Starting processor check simulation..." -make USER_FLAGS+="-DRUN_CHECK -DUART0_SIM_MODE -DUART1_SIM_MODE -g" MARCH=rv32imac clean_all sim +make USER_FLAGS+="-DRUN_CHECK -DUART0_SIM_MODE -DUART1_SIM_MODE -g" MARCH=rv32imc clean_all sim