⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pwm.vhd

📁 Toplevel VHDL Structural model of a system containing 8051
💻 VHD
字号:
LIBRARY ieee;
USE ieee.std_logic_1164.ALL;

ENTITY pwm IS
  PORT(
     output : OUT std_logic
   );
END ENTITY pwm;

ARCHITECTURE spec OF pwm IS
BEGIN
       pulse_modulate : PROCESS IS
       CONSTANT period      : TIME := 60 us;
       CONSTANT duty_cycle1 : REAL := 0.7;
       CONSTANT duty_cycle2 : REAL := 0.3;
   BEGIN
       output <= '1';
       WAIT FOR period * duty_cycle1;
       output <= '0';
       WAIT FOR period * (1.0 - duty_cycle1);
       output <= '1';
       WAIT FOR period * duty_cycle2;
       output <= '0';
       WAIT FOR period * (1.0 - duty_cycle2);
   END PROCESS pulse_modulate;

END spec;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -