Skip to content

Commit

Permalink
remove A extension from ISA string
Browse files Browse the repository at this point in the history
  • Loading branch information
stnolting committed Apr 27, 2022
1 parent 7f4f04a commit 8ba2c96
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Processor.yml
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion do.py
Expand Up @@ -27,7 +27,7 @@ def task_BuildAndInstallSoftwareFrameworkTests():
# Compile and install test application
# Redirect UART0 TX to text.io simulation output via <UART0_SIM_MODE> 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",
}
Expand Down
2 changes: 1 addition & 1 deletion sw/example/processor_check/run_check.sh
Expand Up @@ -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

0 comments on commit 8ba2c96

Please sign in to comment.