Skip to content

Commit

Permalink
audio(examples): removed test beep sound from "Stripes" example
Browse files Browse the repository at this point in the history
  • Loading branch information
rejunity committed Sep 23, 2024
1 parent e49dea5 commit 833653d
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/examples/stripes/project.v
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,14 @@ module tt_um_vga_example(

// TinyVGA PMOD
assign uo_out = {hsync, B[0], G[0], R[0], vsync, B[1], G[1], R[1]};
assign uio_out = {sound, 7'b0};

// Unused outputs assigned to 0.
assign uio_oe = 8'hff;
assign uio_out = 0;
assign uio_oe = 0;

// Suppress unused signals warning
wire _unused_ok = &{ena, ui_in, uio_in};

reg [15:0] counter2;
assign sound = counter2[14];
always @(posedge clk) begin
counter2 <= counter2 + 1;
end

reg [9:0] counter;

hvsync_generator hvsync_gen(
Expand Down

0 comments on commit 833653d

Please sign in to comment.