summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-09-25 20:31:25 -0600
committerAlejandro Soto <alejandro@34project.org>2022-09-25 20:31:25 -0600
commit8c7b6113c51215de9f57f016681bfcc43513ee37 (patch)
treec627f234e96e8998cd2b800c2a9efbe457bd5734
parentbd8f26b888ec30aac61586f4165681ad41046cc4 (diff)
Rename HPS SDRAM testbench file
Diffstat (limited to '')
-rw-r--r--tb/top/hps_sdram_test.cpp (renamed from tb/top/conspiracion.cpp)10
1 files changed, 5 insertions, 5 deletions
diff --git a/tb/top/conspiracion.cpp b/tb/top/hps_sdram_test.cpp
index bce5546..b173c41 100644
--- a/tb/top/conspiracion.cpp
+++ b/tb/top/hps_sdram_test.cpp
@@ -3,9 +3,9 @@
#include <verilated.h>
#include <verilated_vcd_c.h>
-#include "Vconspiracion.h"
-#include "Vconspiracion_conspiracion.h"
-#include "Vconspiracion_platform.h"
+#include "Vhps_sdram_test.h"
+#include "Vhps_sdram_test_hps_sdram_test.h"
+#include "Vhps_sdram_test_platform.h"
#include "../avalon.hpp"
#include "../mem.hpp"
@@ -16,7 +16,7 @@ int main(int argc, char **argv)
Verilated::commandArgs(argc, argv);
- Vconspiracion top;
+ Vhps_sdram_test top;
#ifdef TRACE
Verilated::traceEverOn(true);
@@ -26,7 +26,7 @@ int main(int argc, char **argv)
trace.open("trace.vcd");
#endif
- interconnect<Vconspiracion_platform> avl(*top.conspiracion->plat);
+ interconnect<Vhps_sdram_test_platform> avl(*top.hps_sdram_test->plat);
mem hps_ddr3(0x0000'0000, 512 << 20);
avl.attach(hps_ddr3);