Delete E300Sim.py
authorMegan Wachs <megan@sifive.com>
Thu, 19 Apr 2018 17:46:23 +0000 (10:46 -0700)
committerGitHub <noreply@github.com>
Thu, 19 Apr 2018 17:46:23 +0000 (10:46 -0700)
This file is wrong (the .cfg file isn't right) and not used by anything.

debug/targets/SiFive/Freedom/E300Sim.py [deleted file]

diff --git a/debug/targets/SiFive/Freedom/E300Sim.py b/debug/targets/SiFive/Freedom/E300Sim.py
deleted file mode 100644 (file)
index f9428d0..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-import targets
-import testlib
-
-class E300Hart(targets.Hart):
-    xlen = 32
-    ram = 0x80000000
-    ram_size = 256 * 1024 * 1024
-    instruction_hardware_breakpoint_count = 2
-    link_script_path = "Freedom.lds"
-
-class E300Sim(targets.Target):
-    timeout_sec = 6000
-    openocd_config_path = "Freedom.cfg"
-    harts = [E300Hart()]
-
-    def create(self):
-        return testlib.VcsSim(sim_cmd=self.sim_cmd, debug=False)