From f21144c267da11cdd5d50d49aa7ea5f4631b4800 Mon Sep 17 00:00:00 2001 From: Frederick HONG Date: Wed, 4 Dec 2019 09:43:35 +0800 Subject: [PATCH] Update README.md (#2209) It is the correct config filename. Clearer this way. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a883791641..514af7dbc43 100644 --- a/README.md +++ b/README.md @@ -439,7 +439,7 @@ Then you can build as usual with CONFIG=MyConfig. The objective of this section is to use GNU debugger to debug RISC-V programs running on the emulator in the same fashion as in [Spike](https://github.com/riscv/riscv-isa-sim#debugging-with-gdb). -For that we need to add a Remote Bit-Bang client to the emulator. We can do so by extending our Config with JtagDTMSystem, which will add a DebugTransportModuleJTAG to the DUT and connect a SimJTAG module in the Test Harness. This will allow OpenOCD to interface with the emulator, and GDB can interface with OpenOCD. In the following example we added this Config extension to the DefaultConfig: +For that we need to add a Remote Bit-Bang client to the emulator. We can do so by extending our Config with JtagDTMSystem, which will add a DebugTransportModuleJTAG to the DUT and connect a SimJTAG module in the Test Harness. This will allow OpenOCD to interface with the emulator, and GDB can interface with OpenOCD. In the following example we added this Config extension to the Config.scala: class DefaultConfigRBB extends Config( new WithJtagDTMSystem ++ new WithNBigCores(1) ++ new BaseConfig)