Refactor repo structure

This commit is contained in:
Marco Realacci 2024-01-19 03:29:39 +01:00
parent 36ac339086
commit 8fc89fbc03
1732 changed files with 3812 additions and 67 deletions

View file

@ -0,0 +1,9 @@
block SysArch
DB db_c;
S1 s1_c;
S2 s2_c;
connect(db_c.input[1], s2_c.output[1]);
connect(db_c.output[1], s2_c.input[1]);
connect(s1_c.input[2], s2_c.output[2]);
connect(s1_c.output[2], s2_c.input[2]);
end SysArch