Skip to content

Commit

Permalink
Revert "ulx3s support (#7)" (#9)
Browse files Browse the repository at this point in the history
This reverts commit 8577e84.
  • Loading branch information
nand2mario authored Apr 4, 2024
1 parent 8577e84 commit 6d3819d
Show file tree
Hide file tree
Showing 15 changed files with 172 additions and 1,942 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# Compact USB HID host FPGA core

Epsilon, 2/2024

Added keyboard LED control.

nand2mario, 8/2023

Usb_hid_host is a compact FPGA core designed to support USB keyboards, mice and gamepads. It is designed mainly for FPGA retro gaming and computing projects. The most significant advantage is its all-in-one design. It does not require a CPU to work. And it is quite small (<300 LUTs, <250 registers and 1 BRAM block).
Expand Down
4 changes: 2 additions & 2 deletions boards/common/hid_printer.v
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ always @(posedge clk) begin
end

2: case (timer) // print mouse position
20'h00000: `print("\rMouse: x=", STR); // there's no \r ...
20'h00000: `print("\x0dMouse: x=", STR); // there's no \r ...
20'h10000: `print({6'b0, mouse_x[9:0]}, 2);
20'h20000: `print(", y=", STR);
20'h30000: `print({6'b0, mouse_y[9:0]}, 2);
Expand All @@ -103,7 +103,7 @@ always @(posedge clk) begin
20'h60000: `print(mouse_btn[2] ? " M " : " _ ", STR);
endcase
3: case(timer) // print gamepad status
20'h00000: `print("\rGamepad:", STR);
20'h00000: `print("\x0dGamepad:", STR);
20'h10000: `print(game_l ? " L" : " _", STR);
20'h20000: `print(game_u ? " U" : " _", STR);
20'h30000: `print(game_r ? " R" : " _", STR);
Expand Down
59 changes: 0 additions & 59 deletions boards/ulx3s/Makefile

This file was deleted.

26 changes: 0 additions & 26 deletions boards/ulx3s/README.md

This file was deleted.

11 changes: 0 additions & 11 deletions boards/ulx3s/build.ys

This file was deleted.

270 changes: 0 additions & 270 deletions boards/ulx3s/ecp5pll.sv

This file was deleted.

Loading

0 comments on commit 6d3819d

Please sign in to comment.