aboutsummaryrefslogtreecommitdiff
path: root/tests/simple_mem/bus.c
blob: 67fb53b71604f181de836f0f0114141fa8ec338d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <assert.h>

#include <gran/root.h>
#include <gran/clock_domain.h>
#include <gran/mem/simple_mem.h>
#include <gran/bus/simple_bus.h>

#include "traffic_gen.h"

int main()
{
	const size_t size = 100000;
	const uintptr_t addr = 100000;
	struct component *simple_mem = create_simple_mem(size);
	struct component *simple_bus = create_simple_bus();
	simple_bus_add(simple_bus, simple_mem, addr, size);

	struct component *traffic_gen = create_traffic_gen(simple_mem, addr, 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);
}