josecm / riscv-hyp-tests

A bare-metal application to test specific features of the risc-v hypervisor extension
GNU General Public License v3.0
36 stars 22 forks source link

Change linker script to ensure HTIF memory is isolated on its own page #9

Closed autley closed 1 year ago

autley commented 1 year ago

Instruction fetches from the HTIF page are not allowed, so there needs to be an additional ALIGN(0x1000) directive after the section to prevent any code from being placed on that page.

on-behalf-of: @ventanamicro autley@ventanamicro.com

josecm commented 1 year ago

@autley thanks for the PR!