aboutsummaryrefslogtreecommitdiff
path: root/tests/simple_mem/no_bus.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/simple_mem/no_bus.c')
-rw-r--r--tests/simple_mem/no_bus.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/simple_mem/no_bus.c b/tests/simple_mem/no_bus.c
new file mode 100644
index 0000000..df7888e
--- /dev/null
+++ b/tests/simple_mem/no_bus.c
@@ -0,0 +1,24 @@
+#include <assert.h>
+
+#include <gran/root.h>
+#include <gran/clock_domain.h>
+#include <gran/components/mem/simple_mem.h>
+
+#include "traffic_gen.h"
+
+int main()
+{
+ const size_t size = 100000;
+ struct component *simple_mem = create_simple_mem(size);
+ struct component *traffic_gen = create_traffic_gen(simple_mem, 0, size);
+
+ struct clock_domain *clk = create_clock_domain(NS(1));
+ clock_domain_add(clk, traffic_gen);
+
+ struct gran_root *root = create_root();
+ root_add_clock(root, clk);
+
+ assert(root_run(root) == OK);
+
+ destroy_root(root);
+}