From fecb86f6093c1e8aed6ab05c29c5af9d0cb93157 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Tue, 24 Sep 2024 16:51:51 +0300 Subject: initial work towards message passing interface + As they are currently implemented, grid *may* get stuck if two nodes try to send to eachother at the same time, I should probably add in some kind of input buffer as well --- tests/simple_mem/no_bus.c | 1 + 1 file changed, 1 insertion(+) (limited to 'tests/simple_mem/no_bus.c') diff --git a/tests/simple_mem/no_bus.c b/tests/simple_mem/no_bus.c index 8c67e1e..f4622c8 100644 --- a/tests/simple_mem/no_bus.c +++ b/tests/simple_mem/no_bus.c @@ -17,6 +17,7 @@ int main() struct clock_domain *clk = create_clock_domain(NS(1)); clock_domain_add(clk, traffic_gen); + clock_domain_add(clk, simple_mem); struct gran_root *root = create_root(); root_add_clock(root, clk); -- cgit v1.3