Ringer
2023. 6. 12. 17:02ㆍFPGA/HDLBits
728x90
Problem Statement
Suppose you are designing a circuit to control a cellphone's ringer and vibration motor. Whenever the phone needs to ring from an incoming call (input ring), your circuit must either turn on the ringer (output ringer = 1) or the motor (output motor = 1), but not both. If the phone is in vibrate mode (input vibrate_mode = 1), turn on the motor. Otherwise, turn on the ringer.
Try to use only assign statements, to see whether you can translate a problem description into a collection of logic gates.
module top_module (
input ring,
input vibrate_mode,
output ringer, // Make sound
output motor // Vibrate
);
assign ringer = ring & (!vibrate_mode);
assign motor = ring & vibrate_mode;
endmodule
'FPGA > HDLBits' 카테고리의 다른 글
Popcount3 (0) | 2023.06.12 |
---|---|
Thermostat (0) | 2023.06.12 |
Combine circuits A and B (Mt2015 q4) (0) | 2023.06.12 |
Simple circuit B (Mt2015 q4b) (0) | 2023.06.12 |
Simple circuit A (Mt2015 q4a) (0) | 2023.06.12 |