-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
things compile, but can't correctly access yaml settings from Sail
- Loading branch information
1 parent
55aab0d
commit 0ab4b85
Showing
9 changed files
with
109 additions
and
46 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
:doctype: book | ||
:sectids: | ||
The RISC-V Sail Programming Language: A Cookbook for the RISC-V ISA | ||
The RISCV Sail Golden Model: A Cookbook for the RISCV ISA | ||
============================================== | ||
William C. McSpadden <bill@riscv.org>; Martin Berger <contact@martinfriedrichberger.net> | ||
:toc: | ||
|
@@ -9,7 +9,6 @@ William C. McSpadden <[email protected]>; Martin Berger <contact@martinfriedrichber | |
|
||
:showtitle: | ||
|
||
|
||
// Need some preamble to get TOC | ||
{empty} | ||
|
||
|
@@ -52,16 +51,6 @@ The example should be short, standalone and easy to maintain. | |
|
||
We would also ask that if you contribute a code example, that you would maintain it. | ||
|
||
=== Syntax highlighting for Sail | ||
|
||
Syntax highlighting for several editors (emacs, vim, Visual Studio, etc) | ||
can be found at: | ||
|
||
https://github.com/rems-project/sail/tree/sail2/editors | ||
|
||
It is beyond the scope of this document to describe how to use | ||
the syntax highlighting for the various editors. | ||
|
||
== Sail installation | ||
|
||
TBD | ||
|
@@ -116,3 +105,4 @@ Following are a set of FAQs that were generated via set of questions to the Sail | |
|
||
include::./RISCV_model_FAQ.adoc[] | ||
|
||
|
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
3 changes: 2 additions & 1 deletion
3
cookbook/functional_code_examples/platform_configuration/rv32i_platform.yaml
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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
nmi: | ||
label: nmi_vector | ||
reset: | ||
label: reset_vector | ||
# label: reset_vector | ||
address: 0x1000 | ||
mtime: | ||
implemented: True | ||
address: 0x20000 |
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