Hallo
Mach es sinn interne Signale zu synchronisieren?
Externe Signale zu synchronisieren macht mehr Sinn,denke ich.
bsp:
1 | |-------------------------------------|
|
2 | | |
|
3 | | |--------| |--------| |
|
4 | In1 --|->| |-out1------>| | |
|
5 | In2 --|->| |-out2------>| | |
|
6 | In3 --|->|--------|-out3------>|--------| |
|
7 | | module A module B |
|
8 | | |
|
9 | |FPGA |
|
10 | |-------------------------------------|
|
11 |
|
12 | process(clk)
|
13 | begin
|
14 | if( clk'event and clk='1') then
|
15 | --Im Module A
|
16 |
|
17 | In1_d<=In1;
|
18 | In1_d1<=In1_d;
|
19 | out1<=In1_d1;
|
20 |
|
21 | end if;
|
22 | end process;
|
Ist es nötig dasselbe im Module B zu tun ?
CK.