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
OS os_c;
WS ws_c;
WB wb_c;
connect(os_c.input1, wb_c.output1);
connect(os_c.output1, wb_c.input1);
connect(wb_c.input2, ws_c.output2);
connect(wb_c.output2, ws_c.input2);
end SysArch