-
Notifications
You must be signed in to change notification settings - Fork 690
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: move riscv-isa-manual outside of cv32a65x documentation (#2264)
- Loading branch information
Showing
54 changed files
with
51 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Copyright 2024 Thales DIS France SAS | ||
# Licensed under the Solderpad Hardware License, Version 2.1 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1 | ||
# You may obtain a copy of the License at https://solderpad.org/licenses/ | ||
# | ||
# Original Author: Jean-Roch COULON - Thales | ||
|
||
ifeq ($(CONFIG),) | ||
$(error CONFIG must be defined) | ||
endif | ||
|
||
# Path of current file, intended to be included by a configuration subfolder | ||
riscv-isa_dir := $(dir $(lastword $(MAKEFILE_LIST))) | ||
|
||
all: priv-pdf priv-html unpriv-pdf unpriv-html | ||
|
||
setup: | ||
mkdir -p build/riscv-isa-manual | ||
cp -r $(riscv-isa_dir)/riscv-isa-manual/* build/riscv-isa-manual | ||
cp -r $(riscv-isa_dir)/src build/riscv-isa-manual | ||
cp -r src build/riscv-isa-manual | ||
|
||
priv-pdf: setup | ||
cd build/riscv-isa-manual/build; make priv-pdf | ||
cp ./build/riscv-isa-manual/build/riscv-privileged.pdf priv-isa-$(CONFIG).pdf | ||
|
||
priv-html: setup | ||
cd build/riscv-isa-manual/build; make priv-html | ||
cp ./build/riscv-isa-manual/build/riscv-privileged.html priv-isa-$(CONFIG).html | ||
|
||
unpriv-pdf: setup | ||
cd build/riscv-isa-manual/build; make unpriv-pdf | ||
cp ./build/riscv-isa-manual/build/riscv-unprivileged.pdf unpriv-isa-$(CONFIG).pdf | ||
|
||
unpriv-html: setup | ||
cd build/riscv-isa-manual/build; make unpriv-html | ||
cp ./build/riscv-isa-manual/build/riscv-unprivileged.html unpriv-isa-$(CONFIG).html | ||
|
||
clean: | ||
rm -rf build |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
How about keeping line 49 and line 50 same name? just like other submodules.