From 48f3a7e5907ead118c9d12afe0a236c778560875 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klemens=20Sch=C3=B6lhorn?= Date: Wed, 18 Apr 2018 00:28:01 +0200 Subject: [PATCH] Reduce rocket to a single core More than one core does not fit on the ml507 and is more than enough for booting linux and executing basic utilities. --- src/main/scala/unleashed/u500ml507devkit/Config.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/unleashed/u500ml507devkit/Config.scala b/src/main/scala/unleashed/u500ml507devkit/Config.scala index e88d64b..dc6fb02 100644 --- a/src/main/scala/unleashed/u500ml507devkit/Config.scala +++ b/src/main/scala/unleashed/u500ml507devkit/Config.scala @@ -19,7 +19,7 @@ import sifive.freedom.unleashed.u500ml507devkit.fpga._ class FreedomUML507Config extends Config( new WithJtagDTM ++ new WithNMemoryChannels(1) ++ - new WithNBigCores(4) ++ + new WithNBigCores(1) ++ new BaseConfig )