diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-05-01 22:18:32 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-05-01 22:18:32 +0300 |
| commit | 79f67d5ca820b663e9e5682aaaad07118fdbfad8 (patch) | |
| tree | a6f8b61c4ffbd2b5ce973dd7d9f1d6ddb3f58d8c /tests/simple_mem/many.c | |
| parent | d133cc70b125efc1d6c992cb49ce1bca41cf580e (diff) | |
| download | gran-79f67d5ca820b663e9e5682aaaad07118fdbfad8.tar.gz gran-79f67d5ca820b663e9e5682aaaad07118fdbfad8.zip | |
update license stuff
Diffstat (limited to 'tests/simple_mem/many.c')
| -rw-r--r-- | tests/simple_mem/many.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/simple_mem/many.c b/tests/simple_mem/many.c index 254b49f..f2d246a 100644 --- a/tests/simple_mem/many.c +++ b/tests/simple_mem/many.c @@ -1,3 +1,6 @@ +/* SPDX-License-Identifier: copyleft-next-0.3.1 */ +/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */ + #include <assert.h> #include <gran/root.h> @@ -12,8 +15,10 @@ int main() struct component *simple_mem1 = create_simple_mem(size); struct component *simple_mem2 = create_simple_mem(size); - struct component *traffic_gen1 = create_traffic_gen(simple_mem1, 0, size); - struct component *traffic_gen2 = create_traffic_gen(simple_mem2, 0, size); + struct component *traffic_gen1 = + create_traffic_gen(simple_mem1, 0, size); + struct component *traffic_gen2 = + create_traffic_gen(simple_mem2, 0, size); struct clock_domain *clk = create_clock_domain(NS(1)); clock_domain_add(clk, traffic_gen1); |
