gitea doesn't like rst
This commit is contained in:
parent
40f869632b
commit
630048ae5f
|
@ -13,10 +13,10 @@ Use nixpkgs unstable (known to work with ae71c13). Check https://nixbld.m-labs.h
|
|||
Optional: set up the M-Labs key and binary substituter for Nix (otherwise Nix will recompile LLVM, rustc, etc. on your machine).
|
||||
Create the file ``~/.config/nix/nix.conf`` with the following contents:
|
||||
|
||||
::
|
||||
|
||||
```
|
||||
substituters = https://cache.nixos.org https://nixbld.m-labs.hk
|
||||
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nixbld.m-labs.hk-1:5aSRVA5b320xbNvu30tqxVPXpld73bhtOeH6uAjRyHc=
|
||||
```
|
||||
|
||||
Run ``nix-build -A simplesoc_ecp5 release.nix``
|
||||
|
||||
|
@ -24,8 +24,7 @@ Bypass the ispCLOCK device using the jumpers on your board.
|
|||
|
||||
Create a ``versa.cfg`` file with:
|
||||
|
||||
::
|
||||
|
||||
```
|
||||
interface ftdi
|
||||
ftdi_vid_pid 0x0403 0x6010
|
||||
ftdi_channel 0
|
||||
|
@ -33,6 +32,7 @@ Create a ``versa.cfg`` file with:
|
|||
reset_config none
|
||||
adapter_khz 5000
|
||||
jtag newtap ecp5 tap -irlen 8 -expected-id 0x01112043
|
||||
```
|
||||
|
||||
Load the bitstream ``openocd -f versa.cfg -c "transport select jtag; init; svf result/top.svf; exit"``.
|
||||
|
|
@ -6,13 +6,16 @@ extern crate panic_halt;
|
|||
|
||||
use riscv_rt::entry;
|
||||
|
||||
#[entry]
|
||||
fn main() -> ! {
|
||||
let foo = "hello world\n";
|
||||
loop {
|
||||
for c in foo.chars() {
|
||||
fn print(string: &str) {
|
||||
for c in string.chars() {
|
||||
let mem = 0x00400000 as *mut u8;
|
||||
unsafe { *mem = c as u8 }
|
||||
}
|
||||
}
|
||||
|
||||
#[entry]
|
||||
fn main() -> ! {
|
||||
loop {
|
||||
print("hello2");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue