This file contains hidden or 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
| diff --git a/rtl/serv_mem_if.v b/rtl/serv_mem_if.v | |
| index fbdc3c4..4d80ad2 100644 | |
| --- a/rtl/serv_mem_if.v | |
| +++ b/rtl/serv_mem_if.v | |
| @@ -85,10 +85,13 @@ module serv_mem_if | |
| //Shift reg mode with optional clearing of bit 5 | |
| {dat[6] & !(i_shift_op & i_cnt_done),dat[5:1]}; | |
| - assign o_sh_done = dat_shamt[5]; | |
| + assign o_sh_done = r/*dat_shamt[5]*/; |
This file contains hidden or 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
| #!/usr/bin/python3 | |
| import os | |
| import subprocess | |
| import sys | |
| containers = { | |
| 'flow.tcl' : 'edalize/openlane-sky130:v0.12', | |
| 'yosys' : 'hdlc/yosys', | |
| 'nextpnr-ice40': 'hdlc/nextpnr', | |
| 'nextpnr-ecp5' : 'hdlc/nextpnr', |
This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <circuit> | |
| <version>1</version> | |
| <attributes> | |
| <entry> | |
| <string>shapeType</string> | |
| <shapeType>CUSTOM</shapeType> | |
| </entry> | |
| <entry> | |
| <string>Height</string> |
This file contains hidden or 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
| #!/usr/bin/python | |
| import os | |
| import subprocess | |
| import sys | |
| containers = { | |
| 'yosys' : 'hdlc/yosys', | |
| 'nextpnr-ice40': 'hdlc/nextpnr', | |
| 'nextpnr-ecp5' : 'hdlc/nextpnr', | |
| 'icepack' : 'hdlc/icestorm', |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Nexys A7 WebSocket</title> | |
| </head> | |
| <body> | |
| <input type="button" id="btConn" name="btConn" value="Extend into an immersive alternative reality"> | |
| <br /><br /> | |
| <object id="nexys-svg" data="nexys-a7-export.svg" type="image/svg+xml" width="50%" height="50%"> | |
| </body> |
This file contains hidden or 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
| <!-- | |
| Copyright (C) 2016-2020 Davidson Francis <davidsondfgl@gmail.com> | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by | |
| the Free Software Foundation, either version 3 of the License, or | |
| (at your option) any later version. | |
| This program is distributed in the hope that it will be useful, | |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
This file contains hidden or 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
| `default_nettype none | |
| module corescore_qf | |
| (input wire i_rst_n, | |
| output wire redled, | |
| output wire blueled, | |
| output wire greenled); | |
| wire i_clk; | |
| wire clk; |
This file contains hidden or 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
| import argparse | |
| import os.path | |
| import shutil | |
| import subprocess | |
| from fusesoc.config import Config | |
| from fusesoc.coremanager import CoreManager | |
| from fusesoc.edalizer import Edalizer | |
| from fusesoc.librarymanager import Library | |
| from fusesoc.vlnv import Vlnv |
This file contains hidden or 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
| def ass(a,b): | |
| assert a == b |
This file contains hidden or 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
| FROM debian:buster-slim | |
| LABEL Description="SweRVolf image" Vendor="CHIPS Alliance" Version="2019.1" | |
| LABEL maintainer="Olof Kindgren <olof@fossi-foundation.org>" | |
| #wheel?? | |
| RUN apt-get update && apt-get --no-install-recommends install -y \ | |
| bzip2 \ | |
| cmake \ | |
| file \ |