diff options
author | Adrian Harris <48252020+aharris-ventana@users.noreply.github.com> | 2020-04-17 15:26:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-17 15:26:56 -0700 |
commit | 3d3f29e39e627fc7556e558ed321ee63195f4e18 (patch) | |
tree | 9c115e7ab54feaf2e102a60f3ff94294b3396987 | |
parent | 2a869e0c73053ac9c3628de4f5f0d41b5fda0aaf (diff) | |
download | riscv-tests-3d3f29e39e627fc7556e558ed321ee63195f4e18.zip riscv-tests-3d3f29e39e627fc7556e558ed321ee63195f4e18.tar.gz riscv-tests-3d3f29e39e627fc7556e558ed321ee63195f4e18.tar.bz2 |
The HTIF device must live in its own page since it is (generally) a bus/hardware device (#274)
-rw-r--r-- | benchmarks/common/test.ld | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/benchmarks/common/test.ld b/benchmarks/common/test.ld index 679c4ba..a50b017 100644 --- a/benchmarks/common/test.ld +++ b/benchmarks/common/test.ld @@ -28,6 +28,7 @@ SECTIONS . = ALIGN(0x1000); .tohost : { *(.tohost) } + . = ALIGN(0x1000); .text : { *(.text) } /* data segment */ |