package attributes_pkg is attribute period :time; end package; library work; use work.attributes_pkg.period; entity inner is port( signal clk :in bit ); end entity; architecture arch of inner is constant CLK_PERIOD :time := clk'period; begin end architecture; library work; use work.attributes_pkg.period; entity outer is end entity; architecture arch of outer is signal clk :bit; attribute period of clk :signal is 1 ns; begin inst: entity work.inner port map(clk); end architecture; tbot-yubikey/open-keychain Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain-API/build.gradle
blob: 0ce5dc8c03f30635c62071c2134a09e53f4f75b6 (plain)
1
2
3
task wrapper(type: Wrapper) {
    gradleVersion = '1.10'
}