From 700a9b86d2de8fce136c80da798a5e7514d1a8e2 Mon Sep 17 00:00:00 2001 From: Sean Cross Date: Sat, 22 Jun 2019 17:46:19 -0700 Subject: [PATCH] minor rewording of riscv-section Signed-off-by: Sean Cross --- index.html | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 3e7b0e9..35b2ca6 100644 --- a/index.html +++ b/index.html @@ -129,9 +129,7 @@
  • DFU utilities
  • Serial console
  • RISC-V toolchain
  • -
  • Synthesis
  • -
  • Place-and-Route
  • -
  • Packer
  • +
  • FPGA Toolchain
  • Python 3
  • @@ -452,7 +450,18 @@ $ dfu-util -D new-image.dfu # Load new program >>> rgb.mode("error") >>> - + + +
    +

    Memory-Mapped Registers

    +
    #define CSR_VERSION_MAJOR_ADDR 0xe0007000
    +#define CSR_VERSION_MINOR_ADDR 0xe0007004
    +#define CSR_VERSION_REVISION_ADDR 0xe0007008
    +
    >>> import machine
    +>>> machine.mem32[0xe0007000]
    +1
    +>>>
    +

    RGB LEDD reference

    @@ -549,6 +558,9 @@ $ wishbone-tool --pid 0x5bf0 0xe0006800 0xff OBJCOPY riscv-blink.bin IHEX riscv-blink.ihex $ +

    + From riscv-blink directory in teardown2019-workshop +