-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:eborin/riscv-programming
- Loading branch information
Showing
8 changed files
with
159 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "ale"] | ||
path = ale | ||
url = https://github.com/antoniocgj/RISC-V-ALE.git | ||
[submodule "ale-exercise-book"] | ||
path = ale-exercise-book | ||
url = https://github.com/discovery-unicamp/ale-exercise-book.git |
Submodule ale-exercise-book
added at
d33c85
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 |
---|---|---|
|
@@ -37,6 +37,9 @@ | |
<li class="nav-item"> | ||
<a class="nav-link" href="./book.html">Book</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="./exercise-book.html">Exercises</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="./simulator.html">Simulator</a> | ||
</li> | ||
|
@@ -83,7 +86,10 @@ | |
<div class="col-md-12"> | ||
<h2>Contacting the Authors</h2> | ||
<p> | ||
To contact the authors regarding the Book or the RISC-V ALE, please send an e-mail to <a href="mailto:[email protected]">[email protected]</a>. | ||
To contact the authors regarding the Book, Exercise Book or the RISC-V ALE, please send an e-mail to <a href="mailto:[email protected]">[email protected]</a>. | ||
</p> | ||
<p> | ||
Problems regarding the Exercise Book can also be reported via Issues at the GitHub repository at <a href="https://github.com/discovery-unicamp/ale-exercise-book/issues" target="_blank">https://github.com/discovery-unicamp/ale-exercise-book/issues</a>. | ||
</p> | ||
</div> | ||
<div class="col-md-12"> | ||
|
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,111 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<!-- Global site tag (gtag.js) - Google Analytics --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-K44SMSMGJJ"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'G-K44SMSMGJJ'); | ||
</script> | ||
<!-- Global site tag (gtag.js) - Google Analytics --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="description" content=""> | ||
<meta name="author" content=""> | ||
<link rel="icon" href="bootstrap-4.0.0/favicon.ico"> | ||
|
||
<title>RISC-V Assembly Programming: About the Book</title> | ||
|
||
<!-- Bootstrap core CSS --> | ||
<link href="bootstrap-4.0.0/dist/css/bootstrap.min.css" rel="stylesheet"> | ||
|
||
<!-- Custom styles for this template --> | ||
<link href="jumbotron.css" rel="stylesheet"> | ||
</head> | ||
|
||
<body> | ||
|
||
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark"> | ||
|
||
<div class="collapse navbar-collapse" id="navbarsExampleDefault"> | ||
<ul class="navbar-nav mr-auto"> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="./index.html">Home</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="./book.html">Book</a> | ||
</li> | ||
<li class="nav-item active"> | ||
<a class="nav-link" href="./exercise-book.html">Exercises</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="./simulator.html">Simulator</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="./contact.html">Contact</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
|
||
<main role="main"> | ||
|
||
<!-- Main jumbotron for a primary marketing message or call to action --> | ||
<div class="jumbotron" > | ||
<div class="container"> | ||
<table> | ||
<tbody> | ||
<tr> | ||
<td style="vertical-align:middle; width:200px"> | ||
<a target="_blank" href="ale-exercise-book/book/index.html"><img width="200px" src="images/exercise-book-cover.png"/></a> | ||
</td> | ||
<td style="vertical-align:middle; padding-left: 50pt;"> | ||
<h1 class="display-5">RISC-V ALE Exercise Book</h1> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
</div> | ||
</div> | ||
|
||
<div class="container"> | ||
<!-- Example row of columns --> | ||
<div class="row"> | ||
|
||
<!-- Section --> | ||
<div class="col-md-12"> | ||
<h2>Overview</h2> | ||
<p><a href="ale-exercise-book/book/index.html" target="_blank">RISC-V ALE Exercise Book</a> is a set of complementary exercises for the textbook <a href="book/riscv-book.html" target="_blank">An Introduction to Assembly Programming with RISC-V</a> | ||
Its exercises covers topics from using the necessary tools to generating files and using the ALE simulator to writing assembly code to interect with external devices. | ||
</p> | ||
<p> | ||
Most of the exercises were made to be executed on the <a href="ale/">RISC-V Assembly Learn Environment</a>. | ||
</p> | ||
</div> | ||
|
||
<!-- Section --> | ||
<div class="col-md-12"> | ||
<h2>Target audience</h2> | ||
<p>This book is intended for people that are studying RISC-V programming and want to practice assembly programming. | ||
</div> | ||
</div> | ||
|
||
<hr> | ||
|
||
</div> <!-- /container --> | ||
|
||
</main> | ||
|
||
<!-- Bootstrap core JavaScript | ||
================================================== --> | ||
<!-- Placed at the end of the document so the pages load faster --> | ||
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script> | ||
<script>window.jQuery || document.write('<script src="bootstrap-4.0.0/assets/js/vendor/jquery-slim.min.js"><\/script>')</script> | ||
<script src="bootstrap-4.0.0/assets/js/vendor/popper.min.js"></script> | ||
<script src="bootstrap-4.0.0/dist/js/bootstrap.min.js"></script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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