From c1a4617d74aae75db7d6b122048ff46d57aabfbd Mon Sep 17 00:00:00 2001 From: Donald Sebastian Leung Date: Mon, 21 Sep 2020 11:30:48 +0800 Subject: [PATCH] Use m-labs nmigen repo --- README.md | 1 + shell.nix | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f3f5af5..42b2c99 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,7 @@ The RV32I, RV32M, RV64I and RV64M ISAs are currently implemented but only RV32IM In no particular order: +- Allow configurable limit for no. of running processes in order to prevent thrashing - Combine individual instruction checks into single ISA check (currently, doing so takes forever even when depth is set to only `20`) ## License diff --git a/shell.nix b/shell.nix index 07dd003..cf7e2e1 100644 --- a/shell.nix +++ b/shell.nix @@ -2,9 +2,9 @@ let pkgs = import { }; nmigen-latest = pkgs.python3Packages.nmigen.overrideAttrs(oa: { src = pkgs.fetchFromGitHub { - owner = "DonaldKellett"; + owner = "m-labs"; repo = "nmigen"; - rev = "03726c7e3f307f27626bcc7dffe75abe17b2a390"; + rev = "39602ae3fdd143f3aa130278fb185cf3ff98d6da"; sha256 = "1b0rjbb6is6nzbcnxrwh5iv4k9xcac0ijq5kp47wdg9rhbnaa5w0"; }; });