1
0
mirror of https://github.com/Gehstock/Mist_FPGA.git synced 2026-04-14 07:29:37 +00:00
This commit is contained in:
Marcel
2019-07-28 00:02:32 +02:00
parent 52b1ca4925
commit 9553c9fd65

View File

@@ -68,18 +68,6 @@ wire gameRifle2;
wire m_left, m_right;
wire LPin, RPin, Rifle1, Rifle2;
always @(clk_16)
begin
if (RPin) begin
if (joystick_0[2]) m_right = 1'b1; else
if (joystick_0[3]) m_right = 1'b0;
end else m_right = 1'bz;
if (LPin) begin
if (joystick_1[2]) m_left = 1'b1; else
if (joystick_1[3]) m_left = 1'b0;
end else m_left = 1'bz;
end
always @(*) begin
case (status[3:2])