File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ int main() {
7
7
MAX7219_tty_init (); // redirect printf() to led matrix scroller
8
8
for (;;) {
9
9
printf ("Hello, RISC-V world \001 \002 \001 \002 " );
10
+ // printf("Hello, TelecomNancy ! \001 \002 Best school ! \001 \002 ");
10
11
// printf("Hello FemtoRV friend !!! \001 \002 \001 \002 ");
11
12
// printf("Hello, Hackaday \001 \002 Greetings from FemtoRV !!! ");
12
13
}
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ module SOC (
95
95
96
96
integer i;
97
97
initial begin
98
- for (i= 0 ; i< 32 ; ++ i ) begin
98
+ for (i= 0 ; i< 32 ; i = i + 1 ) begin
99
99
RegisterBank[i] = 0 ;
100
100
end
101
101
end
Original file line number Diff line number Diff line change 1
1
Installing open-source tools for FPGA development
2
2
=================================================
3
3
4
+ Latest news (April 2023): pre-built toolchain for
5
+ Ice40 and ECP5-based FPGAs can be downloaded
6
+ from [ here] ( https://github.com/YosysHQ/oss-cad-suite-build/releases )
7
+ (Windows/Mac/Linux).
8
+
9
+ Just download the package, and
10
+ set the path using ` source ~/where/you/unpacked/it/oss-cad-suite/environment `
11
+ everytime you want to use it (thanks @mecrisp for pointing at that).
12
+
13
+ What follows is for folks who want to compile the tools on their own,
14
+ or if you have something else than an Ice40 or ECP5 (for instance, an ARTY).
15
+
4
16
_ Note: the following instructions are for Linux (I'm using Ubuntu).
5
17
Windows users can run the tutorial using WSL. It requires some
6
18
adaptation, as explained [ here] ( WSL.md ) ._
You can’t perform that action at this time.
0 commit comments