code cleanup and font fix
This commit is contained in:
parent
044d846313
commit
e679a3ce68
10 changed files with 443 additions and 102 deletions
10
beeper.sv
Normal file
10
beeper.sv
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
module beeper (
|
||||
input wire [7:0] sound_timer
|
||||
);
|
||||
|
||||
import "DPI-C" function void set_beep(bit beep);
|
||||
|
||||
always_comb begin
|
||||
set_beep(sound_timer > 0);
|
||||
end
|
||||
endmodule
|
||||
Loading…
Add table
Add a link
Reference in a new issue