mirror of
https://github.com/Gehstock/Mist_FPGA.git
synced 2026-04-08 13:58:44 +00:00
New Arcade Platform
This commit is contained in:
37
Arcade_MiST/Custom Hardware/Sprint2_MiST/clean.bat
Normal file
37
Arcade_MiST/Custom Hardware/Sprint2_MiST/clean.bat
Normal file
@@ -0,0 +1,37 @@
|
||||
@echo off
|
||||
del /s *.bak
|
||||
del /s *.orig
|
||||
del /s *.rej
|
||||
del /s *~
|
||||
rmdir /s /q db
|
||||
rmdir /s /q incremental_db
|
||||
rmdir /s /q output_files
|
||||
rmdir /s /q simulation
|
||||
rmdir /s /q greybox_tmp
|
||||
rmdir /s /q hc_output
|
||||
rmdir /s /q .qsys_edit
|
||||
rmdir /s /q hps_isw_handoff
|
||||
rmdir /s /q sys\.qsys_edit
|
||||
rmdir /s /q sys\vip
|
||||
cd sys
|
||||
for /d %%i in (*_sim) do rmdir /s /q "%%~nxi"
|
||||
cd ..
|
||||
for /d %%i in (*_sim) do rmdir /s /q "%%~nxi"
|
||||
del build_id.v
|
||||
del c5_pin_model_dump.txt
|
||||
del PLLJ_PLLSPE_INFO.txt
|
||||
del /s *.qws
|
||||
del /s *.ppf
|
||||
del /s *.ddb
|
||||
del /s *.csv
|
||||
del /s *.cmp
|
||||
del /s *.sip
|
||||
del /s *.spd
|
||||
del /s *.bsf
|
||||
del /s *.f
|
||||
del /s *.sopcinfo
|
||||
del /s *.xml
|
||||
del /s new_rtl_netlist
|
||||
del /s old_rtl_netlist
|
||||
|
||||
pause
|
||||
159
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/EngineSound.vhd
Normal file
159
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/EngineSound.vhd
Normal file
@@ -0,0 +1,159 @@
|
||||
-- Motor sound generator for Kee Games Sprint 2
|
||||
-- Similar circuits are used in a number of other games
|
||||
-- (c) 2017 James Sweet
|
||||
--
|
||||
-- Original circuit used a 555 configured as an astable oscillator with the frequency controlled by
|
||||
-- a four bit binary value. The output of this oscillator drives a counter configured to produce an
|
||||
-- irregular thumping simulating the sound of an engine.
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
use IEEE.STD_LOGIC_UNSIGNED.all;
|
||||
|
||||
entity EngineSound is
|
||||
generic(
|
||||
constant Freq_tune : integer := 50 -- Value from 0-100 used to tune the overall engine sound frequency
|
||||
);
|
||||
port(
|
||||
Clk_6 : in std_logic;
|
||||
Ena_3k : in std_logic;
|
||||
EngineData : in std_logic_vector(3 downto 0);
|
||||
Motor : out std_logic_vector(5 downto 0)
|
||||
);
|
||||
end EngineSound;
|
||||
|
||||
architecture rtl of EngineSound is
|
||||
|
||||
signal RPM_val : integer range 1 to 350;
|
||||
signal Ramp_term_unfilt : integer range 1 to 80000;
|
||||
signal Ramp_Count : integer range 0 to 80000;
|
||||
signal Ramp_term : integer range 1 to 80000;
|
||||
signal Freq_mod : integer range 0 to 400;
|
||||
signal Motor_Clk : std_logic;
|
||||
|
||||
signal Counter_A : std_logic;
|
||||
signal Counter_B : unsigned(2 downto 0);
|
||||
signal Counter_A_clk : std_logic;
|
||||
|
||||
signal Motor_prefilter : unsigned(1 downto 0);
|
||||
signal Motor_filter_t1 : unsigned(3 downto 0);
|
||||
signal Motor_filter_t2 : unsigned(3 downto 0);
|
||||
signal Motor_filter_t3 : unsigned(3 downto 0);
|
||||
signal Motor_filtered : unsigned(5 downto 0);
|
||||
|
||||
|
||||
begin
|
||||
|
||||
-- The frequency of the oscillator is set by a 4 bit binary value controlled by the game CPU
|
||||
-- in the real hardware this is a 555 coupled to a 4 bit resistor DAC used to pull the frequency.
|
||||
-- The output of this DAC has a capacitor to smooth out the frequency variation.
|
||||
-- The constants assigned to RPM_val can be tweaked to adjust the frequency curve
|
||||
|
||||
Speed_select: process(Clk_6)
|
||||
begin
|
||||
if rising_edge(Clk_6) then
|
||||
case EngineData is
|
||||
when "0000" => RPM_val <= 280;
|
||||
when "0001" => RPM_val <= 245;
|
||||
when "0010" => RPM_val <= 230;
|
||||
when "0011" => RPM_val <= 205;
|
||||
when "0100" => RPM_val <= 190;
|
||||
when "0101" => RPM_val <= 175;
|
||||
when "0110" => RPM_val <= 160;
|
||||
when "0111" => RPM_val <= 145;
|
||||
when "1000" => RPM_val <= 130;
|
||||
when "1001" => RPM_val <= 115;
|
||||
when "1010" => RPM_val <= 100;
|
||||
when "1011" => RPM_val <= 85;
|
||||
when "1100" => RPM_val <= 70;
|
||||
when "1101" => RPM_val <= 55;
|
||||
when "1110" => RPM_val <= 40;
|
||||
when "1111" => RPM_val <= 25;
|
||||
end case;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- There is a RC filter between the frequency control DAC and the 555 to smooth out the transitions between the
|
||||
-- 16 possible states. We can simulate a reasonable approximation of that behavior using a linear slope which is
|
||||
-- not truly accurate but should be close enough.
|
||||
RC_filt: process(clk_6, ena_3k, ramp_term_unfilt)
|
||||
begin
|
||||
if rising_edge(clk_6) then
|
||||
if ena_3k = '1' then
|
||||
if ramp_term_unfilt > ramp_term then
|
||||
ramp_term <= ramp_term + 5;
|
||||
elsif ramp_term_unfilt = ramp_term then
|
||||
ramp_term <= ramp_term;
|
||||
else
|
||||
ramp_term <= ramp_term - 3;
|
||||
end if;
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- Ramp_term terminates the ramp count, the higher this value, the longer the ramp will count up and the lower
|
||||
-- the frequency. RPM_val is multiplied by a constant which can be adjusted by changing the value of freq_tune
|
||||
-- to simulate the function of the frequency adjustment pot in the original hardware.
|
||||
ramp_term_unfilt <= ((200 - freq_tune) * RPM_val);
|
||||
|
||||
-- Variable frequency oscillator roughly approximating the function of a 555 astable oscillator
|
||||
Ramp_osc: process(clk_6)
|
||||
begin
|
||||
if rising_edge(clk_6) then
|
||||
motor_clk <= '1';
|
||||
ramp_count <= ramp_count + 1;
|
||||
if ramp_count > ramp_term then
|
||||
ramp_count <= 0;
|
||||
motor_clk <= '0';
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- 7492 counter with XOR on two of the outputs creates lumpy engine sound from smooth pulse train
|
||||
-- 7492 has two sections, one div-by-2 and one div-by-6.
|
||||
Engine_counter: process(motor_clk, counter_A_clk, counter_B)
|
||||
begin
|
||||
if rising_edge(motor_clk) then
|
||||
Counter_B <= Counter_B + '1';
|
||||
end if;
|
||||
Counter_A_clk <= Counter_B(0) xor Counter_B(2);
|
||||
if rising_edge(counter_A_clk) then
|
||||
Counter_A <= (not Counter_A);
|
||||
end if;
|
||||
end process;
|
||||
motor_prefilter <= ('0' & Counter_B(2)) + ('0' & Counter_B(1)) + ('0' & Counter_A);
|
||||
|
||||
-- Very simple low pass filter, borrowed from MikeJ's Asteroids code
|
||||
Engine_filter: process(clk_6)
|
||||
begin
|
||||
if rising_edge(clk_6) then
|
||||
if (ena_3k = '1') then
|
||||
motor_filter_t1 <= ("00" & motor_prefilter) + ("00" & motor_prefilter);
|
||||
motor_filter_t2 <= motor_filter_t1;
|
||||
motor_filter_t3 <= motor_filter_t2;
|
||||
end if;
|
||||
motor_filtered <= ("00" & motor_filter_t1) +
|
||||
('0' & motor_filter_t2 & '0') +
|
||||
("00" & motor_filter_t3);
|
||||
end if;
|
||||
end process;
|
||||
|
||||
motor <= std_logic_vector(motor_filtered);
|
||||
|
||||
end rtl;
|
||||
186
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/IO.vhd
Normal file
186
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/IO.vhd
Normal file
@@ -0,0 +1,186 @@
|
||||
-- IO block for Kee Games Sprint 2
|
||||
-- 2017 James Sweet
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
|
||||
entity IO is
|
||||
port(
|
||||
CLK6 : in std_logic;
|
||||
SW1 : in std_logic_vector(7 downto 0); -- DIP switches
|
||||
Coin1_n : in std_logic; -- Coin switches
|
||||
Coin2_n : in std_logic;
|
||||
Start1 : in std_logic; -- 1 and 2 player start switches
|
||||
Start2 : in std_logic;
|
||||
Trak_Sel : in std_logic;
|
||||
Gas1 : in std_logic;
|
||||
Gas2 : in std_logic;
|
||||
Gear1_1 : in std_logic;
|
||||
Gear1_2 : in std_logic;
|
||||
Gear2_1 : in std_logic;
|
||||
Gear2_2 : in std_logic;
|
||||
Gear3_1 : in std_logic;
|
||||
Gear3_2 : in std_logic;
|
||||
Test : in std_logic; -- Self test switch
|
||||
Slam : in std_logic; -- Slam switch
|
||||
|
||||
Steering1A : in std_logic;
|
||||
Steering1B : in std_logic;
|
||||
Steering2A : in std_logic;
|
||||
Steering2B : in std_logic;
|
||||
|
||||
|
||||
Lamp1 : out std_logic; -- Player 1 lamp
|
||||
Lamp2 : out std_logic; -- Player 2 lamp
|
||||
|
||||
Timer_Reset_n : out std_logic;
|
||||
IntAck_n : out std_logic;
|
||||
IO_wr : in std_logic;
|
||||
|
||||
Counter : out std_logic; -- Coin counter
|
||||
Adr : in std_logic_vector(9 downto 0); -- Adress bus, only the lower 9 bits used by IO circuitry
|
||||
Inputs : out std_logic_vector(1 downto 0) -- Out to data bus, only upper two bits used
|
||||
);
|
||||
end IO;
|
||||
|
||||
architecture rtl of IO is
|
||||
|
||||
signal A8_8 : std_logic;
|
||||
signal H9_Q_n : std_logic;
|
||||
signal H8_en : std_logic;
|
||||
signal Coin1 : std_logic;
|
||||
signal Coin2 : std_logic;
|
||||
signal SW2_bank1 : std_logic;
|
||||
signal SW2_bank2 : std_logic;
|
||||
signal DipSW : std_logic_vector(7 downto 0);
|
||||
signal E8_in : std_logic_vector(3 downto 0);
|
||||
signal J9_out : std_logic_vector(7 downto 0);
|
||||
signal E8_out : std_logic_vector(9 downto 0);
|
||||
|
||||
|
||||
begin
|
||||
|
||||
-- Inputs
|
||||
--M8: process(Adr(7 downto 6), Coin1, Coin2, Start1_n, Start2_n, Test_n, Slam_n, A8_8, SW2_bank2)
|
||||
--begin
|
||||
-- case Adr(7 downto 6) is
|
||||
-- when "00" => Inputs <= A8_8 & SW2_bank2; -- There is actually an inverter N9 fed by A8_8 so we will just account for that
|
||||
-- when "01" => Inputs <= Coin2 & Coin1;
|
||||
-- when "10" => Inputs <= Start2_n & Start1_n;
|
||||
-- when "11" => Inputs <= Test_n & Slam_n;
|
||||
-- when others => Inputs <= "11";
|
||||
-- end case;
|
||||
--end process;
|
||||
---- Coin switch inputs are active-high internally but inverted on board from active-low inputs
|
||||
--Coin1 <= (not Coin1_n);
|
||||
--Coin2 <= (not Coin2_n);
|
||||
|
||||
|
||||
F9: process(Adr, Gear1_1, Gear1_2, Gear2_1, Gear2_2, Gear3_1, Gear3_2)
|
||||
begin
|
||||
if Adr(5) = '0' then -- Adr(5) is connected to enable
|
||||
case Adr(2 downto 0) is
|
||||
when "000" => F9_Q_n <= (not Gear1_1);
|
||||
when "001" => F9_Q_n <= (not Gear1_2);
|
||||
when "010" => F9_Q_n <= (not Gear2_1);
|
||||
when "011" => F9_Q_n <= (not Gear2_2);
|
||||
when "100" => F9_Q_n <= (not Gear3_1);
|
||||
when "101" => F9_Q_n <= (not Gear3_2);
|
||||
when "110" => F9_Q_n <= '0'; -- "Spare" switch on schematic
|
||||
when "111" => F9_Q_n <= '0'; -- "Spare" switch on schematic
|
||||
when others => F9_Q_n <= '1';
|
||||
end case;
|
||||
else
|
||||
F9_Q_n <= '1';
|
||||
end if;
|
||||
end process;
|
||||
|
||||
H9: process(Adr, Gas1, Gas2, Self_Test, Start1, Start2, Trak_Sel)
|
||||
begin
|
||||
if Adr(4) = '0' then -- Adr(4) is connected to enable
|
||||
case Adr(2 downto 0) is
|
||||
when "000" => H9_Q_n <= (not Gas1);
|
||||
when "001" => H9_Q_n <= (not Gas2);
|
||||
when "010" => H9_Q_n <= (not Self_Test);
|
||||
when "011" => H9_Q_n <= '0';
|
||||
when "100" => H9_Q_n <= (not Start1);
|
||||
when "101" => H9_Q_n <= (not Start2);
|
||||
when "110" => H9_Q_n <= (not Trak_Sel);
|
||||
when others => H9_Q_n <= '1';
|
||||
end case;
|
||||
else
|
||||
H9_Q_n <= '1';
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- The way the dip switches are wired in the real hardware requires some changes
|
||||
-- to achieve the same result while using standard active-low switch inputs.
|
||||
-- Switches are split into two banks, each bank fed from half of selector J9.
|
||||
J9: process(Adr)
|
||||
begin
|
||||
if Adr(3) = '1' then
|
||||
J9_out <= "11111111";
|
||||
else
|
||||
case Adr(1 downto 0) is
|
||||
when "00" => J9_out <= "11101110";
|
||||
when "01" => J9_out <= "11011101";
|
||||
when "10" => J9_out <= "10111011";
|
||||
when "11" => J9_out <= "01110111";
|
||||
end case;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Re-order the dip switch signals to match the physical order of the switches
|
||||
-- Bank 1
|
||||
DipSW(7) <= J9_out(7) when SW2(1) = '0' else '1';
|
||||
DipSW(6) <= J9_out(6) when SW2(3) = '0' else '1';
|
||||
DipSW(5) <= J9_out(5) when SW2(5) = '0' else '1';
|
||||
DipSW(4) <= J9_out(4) when SW2(7) = '0' else '1';
|
||||
|
||||
--Bank 2
|
||||
DipSW(3) <= J9_out(3) when SW2(0) = '0' else '1';
|
||||
DipSW(2) <= J9_out(2) when SW2(2) = '0' else '1';
|
||||
DipSW(1) <= J9_out(1) when SW2(4) = '0' else '1';
|
||||
DipSW(0) <= J9_out(0) when SW2(6) = '0' else '1';
|
||||
|
||||
-- Outputs from each switch bank are tied together, logical AND since they are active low
|
||||
SW2_bank1 <= DipSW(7) and DipSW(6) and DipSW(5) and DipSW(4);
|
||||
SW2_bank2 <= DipSW(3) and DipSW(2) and DipSW(1) and DipSW(0);
|
||||
|
||||
-- Bank 1 of dip switches is multiplexed with player inputs connected to selectors F9 and H9
|
||||
A8_8 <= SW2_bank1 and F9_Q_n and H9_Q_n;
|
||||
|
||||
|
||||
-- Outputs
|
||||
E8_in <= IO_wr & Adr(9 downto 7);
|
||||
E8: process(E8_in)
|
||||
begin
|
||||
case E8_in is
|
||||
when "0000" => E8_out <= "1111111110";
|
||||
when "0001" => E8_out <= "1111111101";
|
||||
when "0100" => E8_out <= "1111101111";
|
||||
when others => E8_out <= "1111111111";
|
||||
end case;
|
||||
end process;
|
||||
|
||||
H8_en <= E8_out(0);
|
||||
TIMER_RESET_n <= E8_out(1);
|
||||
INTACK_n <= E8_out(4);
|
||||
|
||||
|
||||
|
||||
end rtl;
|
||||
183
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/Inputs.vhd
Normal file
183
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/Inputs.vhd
Normal file
@@ -0,0 +1,183 @@
|
||||
-- Input block for Kee Games Sprint 2
|
||||
-- 2017 James Sweet
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
|
||||
entity control_inputs is
|
||||
port(
|
||||
Clk6 : in std_logic;
|
||||
SW1 : in std_logic_vector(7 downto 0); -- DIP switches
|
||||
Coin1_n : in std_logic; -- Coin switches
|
||||
Coin2_n : in std_logic;
|
||||
Start1 : in std_logic; -- 1 and 2 player start switches
|
||||
Start2 : in std_logic;
|
||||
Trak_Sel : in std_logic; -- Track selection button
|
||||
Gas1 : in std_logic; -- Gas pedals, these are simple on/off switches
|
||||
Gas2 : in std_logic;
|
||||
Gear1_1 : in std_logic; -- Player 1 and 2 gear select levers
|
||||
Gear1_2 : in std_logic;
|
||||
Gear2_1 : in std_logic;
|
||||
Gear2_2 : in std_logic;
|
||||
Gear3_1 : in std_logic;
|
||||
Gear3_2 : in std_logic;
|
||||
Self_Test : in std_logic; -- Self test switch
|
||||
Steering1A_n : in std_logic; -- Steering wheel signals
|
||||
Steering1B_n : in std_logic;
|
||||
Steering2A_n : in std_logic;
|
||||
Steering2B_n : in std_logic;
|
||||
SteerRst1_n : in std_logic;
|
||||
SteerRst2_n : in std_logic;
|
||||
Adr : in std_logic_vector(9 downto 0); -- Adress bus, only the lower 9 bits used by IO circuitry
|
||||
Inputs : out std_logic_vector(1 downto 0) -- Out to data bus, only upper two bits used
|
||||
);
|
||||
end control_inputs;
|
||||
|
||||
architecture rtl of control_inputs is
|
||||
|
||||
signal A8_8 : std_logic;
|
||||
signal F9_Q_n : std_logic;
|
||||
signal H9_Q_n : std_logic;
|
||||
signal H8_en : std_logic;
|
||||
signal Coin1 : std_logic;
|
||||
signal Coin2 : std_logic;
|
||||
signal SW1_bank1 : std_logic;
|
||||
signal SW1_bank2 : std_logic;
|
||||
signal DipSW : std_logic_vector(7 downto 0);
|
||||
signal E8_in : std_logic_vector(3 downto 0);
|
||||
signal J9_out : std_logic_vector(7 downto 0);
|
||||
signal E8_out : std_logic_vector(9 downto 0);
|
||||
|
||||
signal Steering1B_Q_n : std_logic;
|
||||
signal Steering1A_Q : std_logic;
|
||||
signal Steering2B_Q_n : std_logic;
|
||||
signal Steering2A_Q : std_logic;
|
||||
|
||||
|
||||
begin
|
||||
|
||||
-- Inputs
|
||||
M8: process(Adr, A8_8, SW1_bank2, Coin2_n, Coin1_n, Steering1B_Q_n, Steering1A_Q, Steering2B_Q_n, Steering2A_Q)
|
||||
begin
|
||||
case Adr(7 downto 6) is
|
||||
when "00" => Inputs <= A8_8 & SW1_bank2; -- There is actually an inverter N9 fed by A8_8 so we will just account for that
|
||||
when "01" => Inputs <= Coin2_n & Coin1_n;
|
||||
when "10" => Inputs <= Steering1B_Q_n & Steering1A_Q;
|
||||
when "11" => Inputs <= Steering2B_Q_n & Steering2A_Q;
|
||||
when others => Inputs <= "11";
|
||||
end case;
|
||||
end process;
|
||||
|
||||
|
||||
F9: process(Adr, Gear1_1, Gear1_2, Gear2_1, Gear2_2, Gear3_1, Gear3_2)
|
||||
begin
|
||||
if Adr(5) = '0' then -- Adr(5) is connected to enable
|
||||
case Adr(2 downto 0) is
|
||||
when "000" => F9_Q_n <= (not Gear1_1);
|
||||
when "001" => F9_Q_n <= (not Gear1_2);
|
||||
when "010" => F9_Q_n <= (not Gear2_1);
|
||||
when "011" => F9_Q_n <= (not Gear2_2);
|
||||
when "100" => F9_Q_n <= (not Gear3_1);
|
||||
when "101" => F9_Q_n <= (not Gear3_2);
|
||||
when "110" => F9_Q_n <= '1'; -- "Spare" switch on schematic
|
||||
when "111" => F9_Q_n <= '1'; -- "Spare" switch on schematic
|
||||
when others => F9_Q_n <= '1';
|
||||
end case;
|
||||
else
|
||||
F9_Q_n <= '1';
|
||||
end if;
|
||||
end process;
|
||||
|
||||
H9: process(Adr, Gas1, Gas2, Self_Test, Start1, Start2, Trak_Sel)
|
||||
begin
|
||||
if Adr(4) = '0' then -- Adr(4) is connected to enable
|
||||
case Adr(2 downto 0) is
|
||||
when "000" => H9_Q_n <= (not Gas1);
|
||||
when "001" => H9_Q_n <= (not Gas2);
|
||||
when "010" => H9_Q_n <= (not Self_Test);
|
||||
when "011" => H9_Q_n <= '1';
|
||||
when "100" => H9_Q_n <= (not Start1);
|
||||
when "101" => H9_Q_n <= (not Start2);
|
||||
when "110" => H9_Q_n <= (not Trak_Sel);
|
||||
when others => H9_Q_n <= '1';
|
||||
end case;
|
||||
else
|
||||
H9_Q_n <= '1';
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Steering
|
||||
M9: process(Steering1A_n, Steering1B_n, SteerRst1_n)
|
||||
begin
|
||||
if SteerRst1_n <= '0' then -- Asynchronous clear
|
||||
Steering1B_Q_n <= '1';
|
||||
elsif rising_edge(Steering1B_n) then -- Steering encoders are active low but inverted on board
|
||||
Steering1A_Q <= Steering1A_n;
|
||||
Steering1B_Q_n <= '0';
|
||||
end if;
|
||||
end process;
|
||||
|
||||
L9: process(Steering2A_n, Steering2B_n, SteerRst2_n)
|
||||
begin
|
||||
if SteerRst2_n <= '0' then -- Asynchronous clear
|
||||
Steering2B_Q_n <= '1';
|
||||
elsif rising_edge(Steering2B_n) then
|
||||
Steering2A_Q <= Steering2A_n;
|
||||
Steering2B_Q_n <= '0';
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- The way the dip switches are wired in the real hardware requires OR logic
|
||||
-- to achieve the same result while using standard active-low switch inputs.
|
||||
-- Switches are split into two banks, each bank fed from half of selector J9.
|
||||
J9: process(Adr)
|
||||
begin
|
||||
if Adr(3) = '1' then
|
||||
J9_out <= "11111111";
|
||||
else
|
||||
case Adr(1 downto 0) is
|
||||
when "00" => J9_out <= "11101110";
|
||||
when "01" => J9_out <= "11011101";
|
||||
when "10" => J9_out <= "10111011";
|
||||
when "11" => J9_out <= "01110111";
|
||||
end case;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Re-order the dip switch signals to match the physical order of the switches
|
||||
-- Bank 1
|
||||
DipSW(7) <= J9_out(7) or SW1(1);
|
||||
DipSW(6) <= J9_out(6) or SW1(3);
|
||||
DipSW(5) <= J9_out(5) or SW1(5);
|
||||
DipSW(4) <= J9_out(4) or SW1(7);
|
||||
|
||||
--Bank 2
|
||||
DipSW(3) <= J9_out(3) or SW1(0);
|
||||
DipSW(2) <= J9_out(2) or SW1(2);
|
||||
DipSW(1) <= J9_out(1) or SW1(4);
|
||||
DipSW(0) <= J9_out(0) or SW1(6);
|
||||
|
||||
-- Outputs from each switch bank are tied together, logical AND since they are active low
|
||||
SW1_bank1 <= DipSW(7) and DipSW(6) and DipSW(5) and DipSW(4);
|
||||
SW1_bank2 <= DipSW(3) and DipSW(2) and DipSW(1) and DipSW(0);
|
||||
|
||||
-- Bank 1 of dip switches is multiplexed with player inputs connected to selectors F9 and H9
|
||||
A8_8 <= SW1_bank1 and F9_Q_n and H9_Q_n;
|
||||
|
||||
|
||||
|
||||
end rtl;
|
||||
564
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/T65/T65.vhd
Normal file
564
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/T65/T65.vhd
Normal file
@@ -0,0 +1,564 @@
|
||||
-- ****
|
||||
-- T65(b) core. In an effort to merge and maintain bug fixes ....
|
||||
--
|
||||
--
|
||||
-- Ver 301 more merging
|
||||
-- Ver 300 Bugfixes by ehenciak added, started tidyup *bust*
|
||||
-- MikeJ March 2005
|
||||
-- Latest version from www.fpgaarcade.com (original www.opencores.org)
|
||||
--
|
||||
-- ****
|
||||
--
|
||||
-- 65xx compatible microprocessor core
|
||||
--
|
||||
-- Version : 0246
|
||||
--
|
||||
-- Copyright (c) 2002 Daniel Wallner (jesus@opencores.org)
|
||||
--
|
||||
-- All rights reserved
|
||||
--
|
||||
-- Redistribution and use in source and synthezised forms, with or without
|
||||
-- modification, are permitted provided that the following conditions are met:
|
||||
--
|
||||
-- Redistributions of source code must retain the above copyright notice,
|
||||
-- this list of conditions and the following disclaimer.
|
||||
--
|
||||
-- Redistributions in synthesized form must reproduce the above copyright
|
||||
-- notice, this list of conditions and the following disclaimer in the
|
||||
-- documentation and/or other materials provided with the distribution.
|
||||
--
|
||||
-- Neither the name of the author nor the names of other contributors may
|
||||
-- be used to endorse or promote products derived from this software without
|
||||
-- specific prior written permission.
|
||||
--
|
||||
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||
-- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
-- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE
|
||||
-- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
-- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
-- POSSIBILITY OF SUCH DAMAGE.
|
||||
--
|
||||
-- Please report bugs to the author, but before you do so, please
|
||||
-- make sure that this is not a derivative work and that
|
||||
-- you have the latest version of this file.
|
||||
--
|
||||
-- The latest version of this file can be found at:
|
||||
-- http://www.opencores.org/cvsweb.shtml/t65/
|
||||
--
|
||||
-- Limitations :
|
||||
--
|
||||
-- 65C02 and 65C816 modes are incomplete
|
||||
-- Undocumented instructions are not supported
|
||||
-- Some interface signals behaves incorrect
|
||||
--
|
||||
-- File history :
|
||||
--
|
||||
-- 0246 : First release
|
||||
--
|
||||
|
||||
library IEEE;
|
||||
use IEEE.std_logic_1164.all;
|
||||
use IEEE.numeric_std.all;
|
||||
use work.T65_Pack.all;
|
||||
|
||||
-- ehenciak 2-23-2005 : Added the enable signal so that one doesn't have to use
|
||||
-- the ready signal to limit the CPU.
|
||||
entity T65 is
|
||||
port(
|
||||
Mode : in std_logic_vector(1 downto 0); -- "00" => 6502, "01" => 65C02, "10" => 65C816
|
||||
Res_n : in std_logic;
|
||||
Enable : in std_logic;
|
||||
Clk : in std_logic;
|
||||
Rdy : in std_logic;
|
||||
Abort_n : in std_logic;
|
||||
IRQ_n : in std_logic;
|
||||
NMI_n : in std_logic;
|
||||
SO_n : in std_logic;
|
||||
R_W_n : out std_logic;
|
||||
Sync : out std_logic;
|
||||
EF : out std_logic;
|
||||
MF : out std_logic;
|
||||
XF : out std_logic;
|
||||
ML_n : out std_logic;
|
||||
VP_n : out std_logic;
|
||||
VDA : out std_logic;
|
||||
VPA : out std_logic;
|
||||
A : out std_logic_vector(23 downto 0);
|
||||
DI : in std_logic_vector(7 downto 0);
|
||||
DO : out std_logic_vector(7 downto 0)
|
||||
);
|
||||
end T65;
|
||||
|
||||
architecture rtl of T65 is
|
||||
|
||||
-- Registers
|
||||
signal ABC, X, Y, D : std_logic_vector(15 downto 0);
|
||||
signal P, AD, DL : std_logic_vector(7 downto 0) := x"00";
|
||||
signal BAH : std_logic_vector(7 downto 0);
|
||||
signal BAL : std_logic_vector(8 downto 0);
|
||||
signal PBR : std_logic_vector(7 downto 0);
|
||||
signal DBR : std_logic_vector(7 downto 0);
|
||||
signal PC : unsigned(15 downto 0);
|
||||
signal S : unsigned(15 downto 0);
|
||||
signal EF_i : std_logic;
|
||||
signal MF_i : std_logic;
|
||||
signal XF_i : std_logic;
|
||||
|
||||
signal IR : std_logic_vector(7 downto 0);
|
||||
signal MCycle : std_logic_vector(2 downto 0);
|
||||
|
||||
signal Mode_r : std_logic_vector(1 downto 0);
|
||||
signal ALU_Op_r : std_logic_vector(3 downto 0);
|
||||
signal Write_Data_r : std_logic_vector(2 downto 0);
|
||||
signal Set_Addr_To_r : std_logic_vector(1 downto 0);
|
||||
signal PCAdder : unsigned(8 downto 0);
|
||||
|
||||
signal RstCycle : std_logic;
|
||||
signal IRQCycle : std_logic;
|
||||
signal NMICycle : std_logic;
|
||||
|
||||
signal B_o : std_logic;
|
||||
signal SO_n_o : std_logic;
|
||||
signal IRQ_n_o : std_logic;
|
||||
signal NMI_n_o : std_logic;
|
||||
signal NMIAct : std_logic;
|
||||
|
||||
signal Break : std_logic;
|
||||
|
||||
-- ALU signals
|
||||
signal BusA : std_logic_vector(7 downto 0);
|
||||
signal BusA_r : std_logic_vector(7 downto 0);
|
||||
signal BusB : std_logic_vector(7 downto 0);
|
||||
signal ALU_Q : std_logic_vector(7 downto 0);
|
||||
signal P_Out : std_logic_vector(7 downto 0);
|
||||
|
||||
-- Micro code outputs
|
||||
signal LCycle : std_logic_vector(2 downto 0);
|
||||
signal ALU_Op : std_logic_vector(3 downto 0);
|
||||
signal Set_BusA_To : std_logic_vector(2 downto 0);
|
||||
signal Set_Addr_To : std_logic_vector(1 downto 0);
|
||||
signal Write_Data : std_logic_vector(2 downto 0);
|
||||
signal Jump : std_logic_vector(1 downto 0);
|
||||
signal BAAdd : std_logic_vector(1 downto 0);
|
||||
signal BreakAtNA : std_logic;
|
||||
signal ADAdd : std_logic;
|
||||
signal AddY : std_logic;
|
||||
signal PCAdd : std_logic;
|
||||
signal Inc_S : std_logic;
|
||||
signal Dec_S : std_logic;
|
||||
signal LDA : std_logic;
|
||||
signal LDP : std_logic;
|
||||
signal LDX : std_logic;
|
||||
signal LDY : std_logic;
|
||||
signal LDS : std_logic;
|
||||
signal LDDI : std_logic;
|
||||
signal LDALU : std_logic;
|
||||
signal LDAD : std_logic;
|
||||
signal LDBAL : std_logic;
|
||||
signal LDBAH : std_logic;
|
||||
signal SaveP : std_logic;
|
||||
signal Write : std_logic;
|
||||
|
||||
signal really_rdy : std_logic;
|
||||
signal R_W_n_i : std_logic;
|
||||
|
||||
begin
|
||||
-- ehenciak : gate Rdy with read/write to make an "OK, it's
|
||||
-- really OK to stop the processor now if Rdy is
|
||||
-- deasserted" signal
|
||||
really_rdy <= Rdy or not(R_W_n_i);
|
||||
|
||||
-- ehenciak : Drive R_W_n_i off chip.
|
||||
R_W_n <= R_W_n_i;
|
||||
|
||||
Sync <= '1' when MCycle = "000" else '0';
|
||||
EF <= EF_i;
|
||||
MF <= MF_i;
|
||||
XF <= XF_i;
|
||||
ML_n <= '0' when IR(7 downto 6) /= "10" and IR(2 downto 1) = "11" and MCycle(2 downto 1) /= "00" else '1';
|
||||
VP_n <= '0' when IRQCycle = '1' and (MCycle = "101" or MCycle = "110") else '1';
|
||||
VDA <= '1' when Set_Addr_To_r /= "00" else '0'; -- Incorrect !!!!!!!!!!!!
|
||||
VPA <= '1' when Jump(1) = '0' else '0'; -- Incorrect !!!!!!!!!!!!
|
||||
|
||||
mcode : T65_MCode
|
||||
port map(
|
||||
Mode => Mode_r,
|
||||
IR => IR,
|
||||
MCycle => MCycle,
|
||||
P => P,
|
||||
LCycle => LCycle,
|
||||
ALU_Op => ALU_Op,
|
||||
Set_BusA_To => Set_BusA_To,
|
||||
Set_Addr_To => Set_Addr_To,
|
||||
Write_Data => Write_Data,
|
||||
Jump => Jump,
|
||||
BAAdd => BAAdd,
|
||||
BreakAtNA => BreakAtNA,
|
||||
ADAdd => ADAdd,
|
||||
AddY => AddY,
|
||||
PCAdd => PCAdd,
|
||||
Inc_S => Inc_S,
|
||||
Dec_S => Dec_S,
|
||||
LDA => LDA,
|
||||
LDP => LDP,
|
||||
LDX => LDX,
|
||||
LDY => LDY,
|
||||
LDS => LDS,
|
||||
LDDI => LDDI,
|
||||
LDALU => LDALU,
|
||||
LDAD => LDAD,
|
||||
LDBAL => LDBAL,
|
||||
LDBAH => LDBAH,
|
||||
SaveP => SaveP,
|
||||
Write => Write
|
||||
);
|
||||
|
||||
alu : T65_ALU
|
||||
port map(
|
||||
Mode => Mode_r,
|
||||
Op => ALU_Op_r,
|
||||
BusA => BusA_r,
|
||||
BusB => BusB,
|
||||
P_In => P,
|
||||
P_Out => P_Out,
|
||||
Q => ALU_Q
|
||||
);
|
||||
|
||||
process (Res_n, Clk)
|
||||
begin
|
||||
if Res_n = '0' then
|
||||
PC <= (others => '0'); -- Program Counter
|
||||
IR <= "00000000";
|
||||
S <= (others => '0'); -- Dummy !!!!!!!!!!!!!!!!!!!!!
|
||||
D <= (others => '0');
|
||||
PBR <= (others => '0');
|
||||
DBR <= (others => '0');
|
||||
|
||||
Mode_r <= (others => '0');
|
||||
ALU_Op_r <= "1100";
|
||||
Write_Data_r <= "000";
|
||||
Set_Addr_To_r <= "00";
|
||||
|
||||
R_W_n_i <= '1';
|
||||
EF_i <= '1';
|
||||
MF_i <= '1';
|
||||
XF_i <= '1';
|
||||
|
||||
elsif Clk'event and Clk = '1' then
|
||||
if (Enable = '1') then
|
||||
if (really_rdy = '1') then
|
||||
R_W_n_i <= not Write or RstCycle;
|
||||
|
||||
D <= (others => '1'); -- Dummy
|
||||
PBR <= (others => '1'); -- Dummy
|
||||
DBR <= (others => '1'); -- Dummy
|
||||
EF_i <= '0'; -- Dummy
|
||||
MF_i <= '0'; -- Dummy
|
||||
XF_i <= '0'; -- Dummy
|
||||
|
||||
if MCycle = "000" then
|
||||
Mode_r <= Mode;
|
||||
|
||||
if IRQCycle = '0' and NMICycle = '0' then
|
||||
PC <= PC + 1;
|
||||
end if;
|
||||
|
||||
if IRQCycle = '1' or NMICycle = '1' then
|
||||
IR <= "00000000";
|
||||
else
|
||||
IR <= DI;
|
||||
end if;
|
||||
end if;
|
||||
|
||||
ALU_Op_r <= ALU_Op;
|
||||
Write_Data_r <= Write_Data;
|
||||
if Break = '1' then
|
||||
Set_Addr_To_r <= "00";
|
||||
else
|
||||
Set_Addr_To_r <= Set_Addr_To;
|
||||
end if;
|
||||
|
||||
if Inc_S = '1' then
|
||||
S <= S + 1;
|
||||
end if;
|
||||
if Dec_S = '1' and RstCycle = '0' then
|
||||
S <= S - 1;
|
||||
end if;
|
||||
if LDS = '1' then
|
||||
S(7 downto 0) <= unsigned(ALU_Q);
|
||||
end if;
|
||||
|
||||
if IR = "00000000" and MCycle = "001" and IRQCycle = '0' and NMICycle = '0' then
|
||||
PC <= PC + 1;
|
||||
end if;
|
||||
--
|
||||
-- jump control logic
|
||||
--
|
||||
case Jump is
|
||||
when "01" =>
|
||||
PC <= PC + 1;
|
||||
|
||||
when "10" =>
|
||||
PC <= unsigned(DI & DL);
|
||||
|
||||
when "11" =>
|
||||
if PCAdder(8) = '1' then
|
||||
if DL(7) = '0' then
|
||||
PC(15 downto 8) <= PC(15 downto 8) + 1;
|
||||
else
|
||||
PC(15 downto 8) <= PC(15 downto 8) - 1;
|
||||
end if;
|
||||
end if;
|
||||
PC(7 downto 0) <= PCAdder(7 downto 0);
|
||||
|
||||
when others => null;
|
||||
end case;
|
||||
end if;
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
PCAdder <= resize(PC(7 downto 0),9) + resize(unsigned(DL(7) & DL),9) when PCAdd = '1'
|
||||
else "0" & PC(7 downto 0);
|
||||
|
||||
process (Clk)
|
||||
begin
|
||||
if Clk'event and Clk = '1' then
|
||||
if (Enable = '1') then
|
||||
if (really_rdy = '1') then
|
||||
if MCycle = "000" then
|
||||
if LDA = '1' then
|
||||
ABC(7 downto 0) <= ALU_Q;
|
||||
end if;
|
||||
if LDX = '1' then
|
||||
X(7 downto 0) <= ALU_Q;
|
||||
end if;
|
||||
if LDY = '1' then
|
||||
Y(7 downto 0) <= ALU_Q;
|
||||
end if;
|
||||
if (LDA or LDX or LDY) = '1' then
|
||||
P <= P_Out;
|
||||
end if;
|
||||
end if;
|
||||
if SaveP = '1' then
|
||||
P <= P_Out;
|
||||
end if;
|
||||
if LDP = '1' then
|
||||
P <= ALU_Q;
|
||||
end if;
|
||||
if IR(4 downto 0) = "11000" then
|
||||
case IR(7 downto 5) is
|
||||
when "000" =>
|
||||
P(Flag_C) <= '0';
|
||||
when "001" =>
|
||||
P(Flag_C) <= '1';
|
||||
when "010" =>
|
||||
P(Flag_I) <= '0';
|
||||
when "011" =>
|
||||
P(Flag_I) <= '1';
|
||||
when "101" =>
|
||||
P(Flag_V) <= '0';
|
||||
when "110" =>
|
||||
P(Flag_D) <= '0';
|
||||
when "111" =>
|
||||
P(Flag_D) <= '1';
|
||||
when others =>
|
||||
end case;
|
||||
end if;
|
||||
|
||||
--if IR = "00000000" and MCycle = "011" and RstCycle = '0' and NMICycle = '0' and IRQCycle = '0' then
|
||||
-- P(Flag_B) <= '1';
|
||||
--end if;
|
||||
--if IR = "00000000" and MCycle = "100" and RstCycle = '0' and (NMICycle = '1' or IRQCycle = '1') then
|
||||
-- P(Flag_I) <= '1';
|
||||
-- P(Flag_B) <= B_o;
|
||||
--end if;
|
||||
|
||||
-- B=1 always on the 6502
|
||||
P(Flag_B) <= '1';
|
||||
if IR = "00000000" and RstCycle = '0' and (NMICycle = '1' or IRQCycle = '1') then
|
||||
if MCycle = "011" then
|
||||
-- B=0 in *copy* of P pushed onto the stack
|
||||
P(Flag_B) <= '0';
|
||||
elsif MCycle = "100" then
|
||||
P(Flag_I) <= '1';
|
||||
end if;
|
||||
end if;
|
||||
|
||||
if SO_n_o = '1' and SO_n = '0' then
|
||||
P(Flag_V) <= '1';
|
||||
end if;
|
||||
if RstCycle = '1' and Mode_r /= "00" then
|
||||
P(Flag_1) <= '1';
|
||||
P(Flag_D) <= '0';
|
||||
P(Flag_I) <= '1';
|
||||
end if;
|
||||
P(Flag_1) <= '1';
|
||||
|
||||
B_o <= P(Flag_B);
|
||||
SO_n_o <= SO_n;
|
||||
IRQ_n_o <= IRQ_n;
|
||||
NMI_n_o <= NMI_n;
|
||||
end if;
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
---------------------------------------------------------------------------
|
||||
--
|
||||
-- Buses
|
||||
--
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
process (Res_n, Clk)
|
||||
begin
|
||||
if Res_n = '0' then
|
||||
BusA_r <= (others => '0');
|
||||
BusB <= (others => '0');
|
||||
AD <= (others => '0');
|
||||
BAL <= (others => '0');
|
||||
BAH <= (others => '0');
|
||||
DL <= (others => '0');
|
||||
elsif Clk'event and Clk = '1' then
|
||||
if (Enable = '1') then
|
||||
if (Rdy = '1') then
|
||||
BusA_r <= BusA;
|
||||
BusB <= DI;
|
||||
|
||||
case BAAdd is
|
||||
when "01" =>
|
||||
-- BA Inc
|
||||
AD <= std_logic_vector(unsigned(AD) + 1);
|
||||
BAL <= std_logic_vector(unsigned(BAL) + 1);
|
||||
when "10" =>
|
||||
-- BA Add
|
||||
BAL <= std_logic_vector(resize(unsigned(BAL(7 downto 0)),9) + resize(unsigned(BusA),9));
|
||||
when "11" =>
|
||||
-- BA Adj
|
||||
if BAL(8) = '1' then
|
||||
BAH <= std_logic_vector(unsigned(BAH) + 1);
|
||||
end if;
|
||||
when others =>
|
||||
end case;
|
||||
|
||||
-- ehenciak : modified to use Y register as well (bugfix)
|
||||
if ADAdd = '1' then
|
||||
if (AddY = '1') then
|
||||
AD <= std_logic_vector(unsigned(AD) + unsigned(Y(7 downto 0)));
|
||||
else
|
||||
AD <= std_logic_vector(unsigned(AD) + unsigned(X(7 downto 0)));
|
||||
end if;
|
||||
end if;
|
||||
|
||||
if IR = "00000000" then
|
||||
BAL <= (others => '1');
|
||||
BAH <= (others => '1');
|
||||
if RstCycle = '1' then
|
||||
BAL(2 downto 0) <= "100";
|
||||
elsif NMICycle = '1' then
|
||||
BAL(2 downto 0) <= "010";
|
||||
else
|
||||
BAL(2 downto 0) <= "110";
|
||||
end if;
|
||||
if Set_addr_To_r = "11" then
|
||||
BAL(0) <= '1';
|
||||
end if;
|
||||
end if;
|
||||
|
||||
|
||||
if LDDI = '1' then
|
||||
DL <= DI;
|
||||
end if;
|
||||
if LDALU = '1' then
|
||||
DL <= ALU_Q;
|
||||
end if;
|
||||
if LDAD = '1' then
|
||||
AD <= DI;
|
||||
end if;
|
||||
if LDBAL = '1' then
|
||||
BAL(7 downto 0) <= DI;
|
||||
end if;
|
||||
if LDBAH = '1' then
|
||||
BAH <= DI;
|
||||
end if;
|
||||
end if;
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
Break <= (BreakAtNA and not BAL(8)) or (PCAdd and not PCAdder(8));
|
||||
|
||||
|
||||
with Set_BusA_To select
|
||||
BusA <= DI when "000",
|
||||
ABC(7 downto 0) when "001",
|
||||
X(7 downto 0) when "010",
|
||||
Y(7 downto 0) when "011",
|
||||
std_logic_vector(S(7 downto 0)) when "100",
|
||||
P when "101",
|
||||
(others => '-') when others;
|
||||
|
||||
with Set_Addr_To_r select
|
||||
A <= "0000000000000001" & std_logic_vector(S(7 downto 0)) when "01",
|
||||
DBR & "00000000" & AD when "10",
|
||||
"00000000" & BAH & BAL(7 downto 0) when "11",
|
||||
PBR & std_logic_vector(PC(15 downto 8)) & std_logic_vector(PCAdder(7 downto 0)) when others;
|
||||
|
||||
with Write_Data_r select
|
||||
DO <= DL when "000",
|
||||
ABC(7 downto 0) when "001",
|
||||
X(7 downto 0) when "010",
|
||||
Y(7 downto 0) when "011",
|
||||
std_logic_vector(S(7 downto 0)) when "100",
|
||||
P when "101",
|
||||
std_logic_vector(PC(7 downto 0)) when "110",
|
||||
std_logic_vector(PC(15 downto 8)) when others;
|
||||
|
||||
-------------------------------------------------------------------------
|
||||
--
|
||||
-- Main state machine
|
||||
--
|
||||
-------------------------------------------------------------------------
|
||||
|
||||
process (Res_n, Clk)
|
||||
begin
|
||||
if Res_n = '0' then
|
||||
MCycle <= "001";
|
||||
RstCycle <= '1';
|
||||
IRQCycle <= '0';
|
||||
NMICycle <= '0';
|
||||
NMIAct <= '0';
|
||||
elsif Clk'event and Clk = '1' then
|
||||
if (Enable = '1') then
|
||||
if (really_rdy = '1') then
|
||||
if MCycle = LCycle or Break = '1' then
|
||||
MCycle <= "000";
|
||||
RstCycle <= '0';
|
||||
IRQCycle <= '0';
|
||||
NMICycle <= '0';
|
||||
if NMIAct = '1' then
|
||||
NMICycle <= '1';
|
||||
elsif IRQ_n_o = '0' and P(Flag_I) = '0' then
|
||||
IRQCycle <= '1';
|
||||
end if;
|
||||
else
|
||||
MCycle <= std_logic_vector(unsigned(MCycle) + 1);
|
||||
end if;
|
||||
|
||||
if NMICycle = '1' then
|
||||
NMIAct <= '0';
|
||||
end if;
|
||||
if NMI_n_o = '1' and NMI_n = '0' then
|
||||
NMIAct <= '1';
|
||||
end if;
|
||||
end if;
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
end;
|
||||
260
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/T65/T65_ALU.vhd
Normal file
260
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/T65/T65_ALU.vhd
Normal file
@@ -0,0 +1,260 @@
|
||||
-- ****
|
||||
-- T65(b) core. In an effort to merge and maintain bug fixes ....
|
||||
--
|
||||
--
|
||||
-- Ver 300 Bugfixes by ehenciak added
|
||||
-- MikeJ March 2005
|
||||
-- Latest version from www.fpgaarcade.com (original www.opencores.org)
|
||||
--
|
||||
-- ****
|
||||
--
|
||||
-- 6502 compatible microprocessor core
|
||||
--
|
||||
-- Version : 0245
|
||||
--
|
||||
-- Copyright (c) 2002 Daniel Wallner (jesus@opencores.org)
|
||||
--
|
||||
-- All rights reserved
|
||||
--
|
||||
-- Redistribution and use in source and synthezised forms, with or without
|
||||
-- modification, are permitted provided that the following conditions are met:
|
||||
--
|
||||
-- Redistributions of source code must retain the above copyright notice,
|
||||
-- this list of conditions and the following disclaimer.
|
||||
--
|
||||
-- Redistributions in synthesized form must reproduce the above copyright
|
||||
-- notice, this list of conditions and the following disclaimer in the
|
||||
-- documentation and/or other materials provided with the distribution.
|
||||
--
|
||||
-- Neither the name of the author nor the names of other contributors may
|
||||
-- be used to endorse or promote products derived from this software without
|
||||
-- specific prior written permission.
|
||||
--
|
||||
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||
-- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
-- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE
|
||||
-- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
-- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
-- POSSIBILITY OF SUCH DAMAGE.
|
||||
--
|
||||
-- Please report bugs to the author, but before you do so, please
|
||||
-- make sure that this is not a derivative work and that
|
||||
-- you have the latest version of this file.
|
||||
--
|
||||
-- The latest version of this file can be found at:
|
||||
-- http://www.opencores.org/cvsweb.shtml/t65/
|
||||
--
|
||||
-- Limitations :
|
||||
--
|
||||
-- File history :
|
||||
--
|
||||
-- 0245 : First version
|
||||
--
|
||||
|
||||
library IEEE;
|
||||
use IEEE.std_logic_1164.all;
|
||||
use IEEE.numeric_std.all;
|
||||
use work.T65_Pack.all;
|
||||
|
||||
entity T65_ALU is
|
||||
port(
|
||||
Mode : in std_logic_vector(1 downto 0); -- "00" => 6502, "01" => 65C02, "10" => 65816
|
||||
Op : in std_logic_vector(3 downto 0);
|
||||
BusA : in std_logic_vector(7 downto 0);
|
||||
BusB : in std_logic_vector(7 downto 0);
|
||||
P_In : in std_logic_vector(7 downto 0);
|
||||
P_Out : out std_logic_vector(7 downto 0);
|
||||
Q : out std_logic_vector(7 downto 0)
|
||||
);
|
||||
end T65_ALU;
|
||||
|
||||
architecture rtl of T65_ALU is
|
||||
|
||||
-- AddSub variables (temporary signals)
|
||||
signal ADC_Z : std_logic;
|
||||
signal ADC_C : std_logic;
|
||||
signal ADC_V : std_logic;
|
||||
signal ADC_N : std_logic;
|
||||
signal ADC_Q : std_logic_vector(7 downto 0);
|
||||
signal SBC_Z : std_logic;
|
||||
signal SBC_C : std_logic;
|
||||
signal SBC_V : std_logic;
|
||||
signal SBC_N : std_logic;
|
||||
signal SBC_Q : std_logic_vector(7 downto 0);
|
||||
|
||||
begin
|
||||
|
||||
process (P_In, BusA, BusB)
|
||||
variable AL : unsigned(6 downto 0);
|
||||
variable AH : unsigned(6 downto 0);
|
||||
variable C : std_logic;
|
||||
begin
|
||||
AL := resize(unsigned(BusA(3 downto 0) & P_In(Flag_C)), 7) + resize(unsigned(BusB(3 downto 0) & "1"), 7);
|
||||
AH := resize(unsigned(BusA(7 downto 4) & AL(5)), 7) + resize(unsigned(BusB(7 downto 4) & "1"), 7);
|
||||
|
||||
-- pragma translate_off
|
||||
if is_x(std_logic_vector(AL)) then AL := "0000000"; end if;
|
||||
if is_x(std_logic_vector(AH)) then AH := "0000000"; end if;
|
||||
-- pragma translate_on
|
||||
|
||||
if AL(4 downto 1) = 0 and AH(4 downto 1) = 0 then
|
||||
ADC_Z <= '1';
|
||||
else
|
||||
ADC_Z <= '0';
|
||||
end if;
|
||||
|
||||
if AL(5 downto 1) > 9 and P_In(Flag_D) = '1' then
|
||||
AL(6 downto 1) := AL(6 downto 1) + 6;
|
||||
end if;
|
||||
|
||||
C := AL(6) or AL(5);
|
||||
AH := resize(unsigned(BusA(7 downto 4) & C), 7) + resize(unsigned(BusB(7 downto 4) & "1"), 7);
|
||||
|
||||
ADC_N <= AH(4);
|
||||
ADC_V <= (AH(4) xor BusA(7)) and not (BusA(7) xor BusB(7));
|
||||
|
||||
-- pragma translate_off
|
||||
if is_x(std_logic_vector(AH)) then AH := "0000000"; end if;
|
||||
-- pragma translate_on
|
||||
|
||||
if AH(5 downto 1) > 9 and P_In(Flag_D) = '1' then
|
||||
AH(6 downto 1) := AH(6 downto 1) + 6;
|
||||
end if;
|
||||
|
||||
ADC_C <= AH(6) or AH(5);
|
||||
|
||||
ADC_Q <= std_logic_vector(AH(4 downto 1) & AL(4 downto 1));
|
||||
end process;
|
||||
|
||||
process (Op, P_In, BusA, BusB)
|
||||
variable AL : unsigned(6 downto 0);
|
||||
variable AH : unsigned(5 downto 0);
|
||||
variable C : std_logic;
|
||||
begin
|
||||
C := P_In(Flag_C) or not Op(0);
|
||||
AL := resize(unsigned(BusA(3 downto 0) & C), 7) - resize(unsigned(BusB(3 downto 0) & "1"), 6);
|
||||
AH := resize(unsigned(BusA(7 downto 4) & "0"), 6) - resize(unsigned(BusB(7 downto 4) & AL(5)), 6);
|
||||
|
||||
-- pragma translate_off
|
||||
if is_x(std_logic_vector(AL)) then AL := "0000000"; end if;
|
||||
if is_x(std_logic_vector(AH)) then AH := "000000"; end if;
|
||||
-- pragma translate_on
|
||||
|
||||
if AL(4 downto 1) = 0 and AH(4 downto 1) = 0 then
|
||||
SBC_Z <= '1';
|
||||
else
|
||||
SBC_Z <= '0';
|
||||
end if;
|
||||
|
||||
SBC_C <= not AH(5);
|
||||
SBC_V <= (AH(4) xor BusA(7)) and (BusA(7) xor BusB(7));
|
||||
SBC_N <= AH(4);
|
||||
|
||||
if P_In(Flag_D) = '1' then
|
||||
if AL(5) = '1' then
|
||||
AL(5 downto 1) := AL(5 downto 1) - 6;
|
||||
end if;
|
||||
AH := resize(unsigned(BusA(7 downto 4) & "0"), 6) - resize(unsigned(BusB(7 downto 4) & AL(6)), 6);
|
||||
if AH(5) = '1' then
|
||||
AH(5 downto 1) := AH(5 downto 1) - 6;
|
||||
end if;
|
||||
end if;
|
||||
|
||||
SBC_Q <= std_logic_vector(AH(4 downto 1) & AL(4 downto 1));
|
||||
end process;
|
||||
|
||||
process (Op, P_In, BusA, BusB,
|
||||
ADC_Z, ADC_C, ADC_V, ADC_N, ADC_Q,
|
||||
SBC_Z, SBC_C, SBC_V, SBC_N, SBC_Q)
|
||||
variable Q_t : std_logic_vector(7 downto 0);
|
||||
begin
|
||||
-- ORA, AND, EOR, ADC, NOP, LD, CMP, SBC
|
||||
-- ASL, ROL, LSR, ROR, BIT, LD, DEC, INC
|
||||
P_Out <= P_In;
|
||||
Q_t := BusA;
|
||||
case Op(3 downto 0) is
|
||||
when "0000" =>
|
||||
-- ORA
|
||||
Q_t := BusA or BusB;
|
||||
when "0001" =>
|
||||
-- AND
|
||||
Q_t := BusA and BusB;
|
||||
when "0010" =>
|
||||
-- EOR
|
||||
Q_t := BusA xor BusB;
|
||||
when "0011" =>
|
||||
-- ADC
|
||||
P_Out(Flag_V) <= ADC_V;
|
||||
P_Out(Flag_C) <= ADC_C;
|
||||
Q_t := ADC_Q;
|
||||
when "0101" | "1101" =>
|
||||
-- LDA
|
||||
when "0110" =>
|
||||
-- CMP
|
||||
P_Out(Flag_C) <= SBC_C;
|
||||
when "0111" =>
|
||||
-- SBC
|
||||
P_Out(Flag_V) <= SBC_V;
|
||||
P_Out(Flag_C) <= SBC_C;
|
||||
Q_t := SBC_Q;
|
||||
when "1000" =>
|
||||
-- ASL
|
||||
Q_t := BusA(6 downto 0) & "0";
|
||||
P_Out(Flag_C) <= BusA(7);
|
||||
when "1001" =>
|
||||
-- ROL
|
||||
Q_t := BusA(6 downto 0) & P_In(Flag_C);
|
||||
P_Out(Flag_C) <= BusA(7);
|
||||
when "1010" =>
|
||||
-- LSR
|
||||
Q_t := "0" & BusA(7 downto 1);
|
||||
P_Out(Flag_C) <= BusA(0);
|
||||
when "1011" =>
|
||||
-- ROR
|
||||
Q_t := P_In(Flag_C) & BusA(7 downto 1);
|
||||
P_Out(Flag_C) <= BusA(0);
|
||||
when "1100" =>
|
||||
-- BIT
|
||||
P_Out(Flag_V) <= BusB(6);
|
||||
when "1110" =>
|
||||
-- DEC
|
||||
Q_t := std_logic_vector(unsigned(BusA) - 1);
|
||||
when "1111" =>
|
||||
-- INC
|
||||
Q_t := std_logic_vector(unsigned(BusA) + 1);
|
||||
when others =>
|
||||
end case;
|
||||
|
||||
case Op(3 downto 0) is
|
||||
when "0011" =>
|
||||
P_Out(Flag_N) <= ADC_N;
|
||||
P_Out(Flag_Z) <= ADC_Z;
|
||||
when "0110" | "0111" =>
|
||||
P_Out(Flag_N) <= SBC_N;
|
||||
P_Out(Flag_Z) <= SBC_Z;
|
||||
when "0100" =>
|
||||
when "1100" =>
|
||||
P_Out(Flag_N) <= BusB(7);
|
||||
if (BusA and BusB) = "00000000" then
|
||||
P_Out(Flag_Z) <= '1';
|
||||
else
|
||||
P_Out(Flag_Z) <= '0';
|
||||
end if;
|
||||
when others =>
|
||||
P_Out(Flag_N) <= Q_t(7);
|
||||
if Q_t = "00000000" then
|
||||
P_Out(Flag_Z) <= '1';
|
||||
else
|
||||
P_Out(Flag_Z) <= '0';
|
||||
end if;
|
||||
end case;
|
||||
|
||||
Q <= Q_t;
|
||||
end process;
|
||||
|
||||
end;
|
||||
1052
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/T65/T65_MCode.vhd
Normal file
1052
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/T65/T65_MCode.vhd
Normal file
File diff suppressed because it is too large
Load Diff
117
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/T65/T65_Pack.vhd
Normal file
117
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/T65/T65_Pack.vhd
Normal file
@@ -0,0 +1,117 @@
|
||||
-- ****
|
||||
-- T65(b) core. In an effort to merge and maintain bug fixes ....
|
||||
--
|
||||
--
|
||||
-- Ver 300 Bugfixes by ehenciak added
|
||||
-- MikeJ March 2005
|
||||
-- Latest version from www.fpgaarcade.com (original www.opencores.org)
|
||||
--
|
||||
-- ****
|
||||
--
|
||||
-- 65xx compatible microprocessor core
|
||||
--
|
||||
-- Version : 0246
|
||||
--
|
||||
-- Copyright (c) 2002 Daniel Wallner (jesus@opencores.org)
|
||||
--
|
||||
-- All rights reserved
|
||||
--
|
||||
-- Redistribution and use in source and synthezised forms, with or without
|
||||
-- modification, are permitted provided that the following conditions are met:
|
||||
--
|
||||
-- Redistributions of source code must retain the above copyright notice,
|
||||
-- this list of conditions and the following disclaimer.
|
||||
--
|
||||
-- Redistributions in synthesized form must reproduce the above copyright
|
||||
-- notice, this list of conditions and the following disclaimer in the
|
||||
-- documentation and/or other materials provided with the distribution.
|
||||
--
|
||||
-- Neither the name of the author nor the names of other contributors may
|
||||
-- be used to endorse or promote products derived from this software without
|
||||
-- specific prior written permission.
|
||||
--
|
||||
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||
-- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
-- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE
|
||||
-- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
-- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
-- POSSIBILITY OF SUCH DAMAGE.
|
||||
--
|
||||
-- Please report bugs to the author, but before you do so, please
|
||||
-- make sure that this is not a derivative work and that
|
||||
-- you have the latest version of this file.
|
||||
--
|
||||
-- The latest version of this file can be found at:
|
||||
-- http://www.opencores.org/cvsweb.shtml/t65/
|
||||
--
|
||||
-- Limitations :
|
||||
--
|
||||
-- File history :
|
||||
--
|
||||
|
||||
library IEEE;
|
||||
use IEEE.std_logic_1164.all;
|
||||
|
||||
package T65_Pack is
|
||||
|
||||
constant Flag_C : integer := 0;
|
||||
constant Flag_Z : integer := 1;
|
||||
constant Flag_I : integer := 2;
|
||||
constant Flag_D : integer := 3;
|
||||
constant Flag_B : integer := 4;
|
||||
constant Flag_1 : integer := 5;
|
||||
constant Flag_V : integer := 6;
|
||||
constant Flag_N : integer := 7;
|
||||
|
||||
component T65_MCode
|
||||
port(
|
||||
Mode : in std_logic_vector(1 downto 0); -- "00" => 6502, "01" => 65C02, "10" => 65816
|
||||
IR : in std_logic_vector(7 downto 0);
|
||||
MCycle : in std_logic_vector(2 downto 0);
|
||||
P : in std_logic_vector(7 downto 0);
|
||||
LCycle : out std_logic_vector(2 downto 0);
|
||||
ALU_Op : out std_logic_vector(3 downto 0);
|
||||
Set_BusA_To : out std_logic_vector(2 downto 0); -- DI,A,X,Y,S,P
|
||||
Set_Addr_To : out std_logic_vector(1 downto 0); -- PC Adder,S,AD,BA
|
||||
Write_Data : out std_logic_vector(2 downto 0); -- DL,A,X,Y,S,P,PCL,PCH
|
||||
Jump : out std_logic_vector(1 downto 0); -- PC,++,DIDL,Rel
|
||||
BAAdd : out std_logic_vector(1 downto 0); -- None,DB Inc,BA Add,BA Adj
|
||||
BreakAtNA : out std_logic;
|
||||
ADAdd : out std_logic;
|
||||
AddY : out std_logic;
|
||||
PCAdd : out std_logic;
|
||||
Inc_S : out std_logic;
|
||||
Dec_S : out std_logic;
|
||||
LDA : out std_logic;
|
||||
LDP : out std_logic;
|
||||
LDX : out std_logic;
|
||||
LDY : out std_logic;
|
||||
LDS : out std_logic;
|
||||
LDDI : out std_logic;
|
||||
LDALU : out std_logic;
|
||||
LDAD : out std_logic;
|
||||
LDBAL : out std_logic;
|
||||
LDBAH : out std_logic;
|
||||
SaveP : out std_logic;
|
||||
Write : out std_logic
|
||||
);
|
||||
end component;
|
||||
|
||||
component T65_ALU
|
||||
port(
|
||||
Mode : in std_logic_vector(1 downto 0); -- "00" => 6502, "01" => 65C02, "10" => 65C816
|
||||
Op : in std_logic_vector(3 downto 0);
|
||||
BusA : in std_logic_vector(7 downto 0);
|
||||
BusB : in std_logic_vector(7 downto 0);
|
||||
P_In : in std_logic_vector(7 downto 0);
|
||||
P_Out : out std_logic_vector(7 downto 0);
|
||||
Q : out std_logic_vector(7 downto 0)
|
||||
);
|
||||
end component;
|
||||
|
||||
end;
|
||||
@@ -0,0 +1,16 @@
|
||||
ADDRESS_ACLR_A=NONE
|
||||
CLOCK_ENABLE_INPUT_A=BYPASS
|
||||
CLOCK_ENABLE_OUTPUT_A=BYPASS
|
||||
INIT_FILE=../roms/6400-01m2.hex
|
||||
INTENDED_DEVICE_FAMILY="Cyclone III"
|
||||
NUMWORDS_A=256
|
||||
OPERATION_MODE=ROM
|
||||
OUTDATA_ACLR_A=NONE
|
||||
OUTDATA_REG_A=UNREGISTERED
|
||||
WIDTHAD_A=8
|
||||
WIDTH_A=4
|
||||
WIDTH_BYTEENA_A=1
|
||||
DEVICE_FAMILY="Cyclone III"
|
||||
address_a
|
||||
clock0
|
||||
q_a
|
||||
2
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/build_id.sv
Normal file
2
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/build_id.sv
Normal file
@@ -0,0 +1,2 @@
|
||||
`define BUILD_DATE "171221"
|
||||
`define BUILD_TIME "172231"
|
||||
35
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/build_id.tcl
Normal file
35
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/build_id.tcl
Normal file
@@ -0,0 +1,35 @@
|
||||
# ================================================================================
|
||||
#
|
||||
# Build ID Verilog Module Script
|
||||
# Jeff Wiencrot - 8/1/2011
|
||||
#
|
||||
# Generates a Verilog module that contains a timestamp,
|
||||
# from the current build. These values are available from the build_date, build_time,
|
||||
# physical_address, and host_name output ports of the build_id module in the build_id.v
|
||||
# Verilog source file.
|
||||
#
|
||||
# ================================================================================
|
||||
|
||||
proc generateBuildID_Verilog {} {
|
||||
|
||||
# Get the timestamp (see: http://www.altera.com/support/examples/tcl/tcl-date-time-stamp.html)
|
||||
set buildDate [ clock format [ clock seconds ] -format %y%m%d ]
|
||||
set buildTime [ clock format [ clock seconds ] -format %H%M%S ]
|
||||
|
||||
# Create a Verilog file for output
|
||||
set outputFileName "rtl/build_id.sv"
|
||||
set outputFile [open $outputFileName "w"]
|
||||
|
||||
# Output the Verilog source
|
||||
puts $outputFile "`define BUILD_DATE \"$buildDate\""
|
||||
puts $outputFile "`define BUILD_TIME \"$buildTime\""
|
||||
close $outputFile
|
||||
|
||||
# Send confirmation message to the Messages window
|
||||
post_message "Generated build identification Verilog module: [pwd]/$outputFileName"
|
||||
post_message "Date: $buildDate"
|
||||
post_message "Time: $buildTime"
|
||||
}
|
||||
|
||||
# Comment out this line to prevent the process from automatically executing when the file is sourced:
|
||||
generateBuildID_Verilog
|
||||
122
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/collision.vhd
Normal file
122
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/collision.vhd
Normal file
@@ -0,0 +1,122 @@
|
||||
-- Collision detection logic for for Kee Games Sprint 2
|
||||
-- This is called the "Car/Playfield Comparator" in the manual and works by comparing the
|
||||
-- video signals representing player and computer cars, track boundaries and oil slicks generating
|
||||
-- collision signals when multiple objects appear at the same time (location) in the video.
|
||||
-- Car 1 and Car 2 are human players, Car 3 and Car 4 are computer controlled.
|
||||
--
|
||||
-- NOTE: There is an error in the original schematic, F8 pin 5 should go to CAR1 (not inverted) and
|
||||
-- F8 pin 9 to CAR2 (not inverted) while the schematic shows them connecting to the inverted signals
|
||||
--
|
||||
-- Tests for the following conditions:
|
||||
-- Car 1 equals Car 2
|
||||
-- Car 1 equals Car 3 or 4
|
||||
-- Car 2 equals Car 3 or 4
|
||||
-- Car 1 equals Black Playfield (Oil slick)
|
||||
-- Car 2 equals Black Playfield (Oil slick)
|
||||
-- Car 1 equals White Playfield (Track boundary)
|
||||
-- Car 2 equals White Playfield (Track boundary)
|
||||
--
|
||||
-- (c) 2017 James Sweet
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
use IEEE.STD_LOGIC_UNSIGNED.all;
|
||||
|
||||
entity collision_detect is
|
||||
port(
|
||||
Clk6 : in std_logic;
|
||||
Car1 : in std_logic;
|
||||
Car1_n : in std_logic;
|
||||
Car2 : in std_logic;
|
||||
Car2_n : in std_logic;
|
||||
Car3_4_n : in std_logic;
|
||||
WhitePF_n : in std_logic;
|
||||
BlackPF_n : in std_logic;
|
||||
CollRst1_n : in std_logic;
|
||||
CollRst2_n : in std_logic;
|
||||
Collisions1 : out std_logic_vector(1 downto 0);
|
||||
Collisions2 : out std_logic_vector(1 downto 0)
|
||||
);
|
||||
end collision_detect;
|
||||
|
||||
architecture rtl of collision_detect is
|
||||
|
||||
signal Col_latch_Q : std_logic_vector(4 downto 1) := (others => '0');
|
||||
signal S1_n : std_logic_vector(4 downto 1);
|
||||
signal S2_n : std_logic_vector(4 downto 1);
|
||||
signal R_n : std_logic_vector(4 downto 1);
|
||||
|
||||
|
||||
begin
|
||||
|
||||
-- Tristate buffers at E5 and E6 route collision signals to data bus 7-6
|
||||
Collisions1 <= Col_latch_Q(2 downto 1);
|
||||
Collisions2 <= Col_latch_Q(4 downto 3);
|
||||
|
||||
-- 74LS279 quad SR latch at H6, all inputs are active low
|
||||
-- These should probably be written as synchronous latches
|
||||
H6: process(Clk6, S1_n, S2_n, R_n, Col_latch_Q)
|
||||
begin
|
||||
if rising_edge(Clk6) then
|
||||
-- Units 1 and 3 each have an extra Set element
|
||||
-- Ordered from top to bottom as drawn in the schematic
|
||||
if R_n(1) = '0' then
|
||||
Col_latch_Q(1) <= '0';
|
||||
elsif (S1_n(1) and S2_n(1)) = '0' then
|
||||
Col_latch_Q(1) <= '1';
|
||||
else
|
||||
Col_latch_Q(1) <= Col_latch_Q(1);
|
||||
end if;
|
||||
if R_n(2) = '0' then
|
||||
Col_latch_Q(2) <= '0';
|
||||
elsif S1_n(2) = '0' then
|
||||
Col_latch_Q(2) <= '1';
|
||||
else
|
||||
Col_latch_Q(2) <= Col_latch_Q(2);
|
||||
end if;
|
||||
if R_n(4) = '0' then
|
||||
Col_latch_Q(4) <= '0';
|
||||
elsif S1_n(4) = '0' then
|
||||
Col_latch_Q(4) <= '1';
|
||||
else
|
||||
Col_latch_Q(4) <= Col_latch_Q(4);
|
||||
end if;
|
||||
if R_n(3) = '0' then
|
||||
Col_latch_Q(3) <= '0';
|
||||
elsif (S1_n(3) and S2_n(3)) = '0' then
|
||||
Col_latch_Q(3) <= '1';
|
||||
else
|
||||
Col_latch_Q(3) <= Col_latch_Q(3);
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Glue logic
|
||||
S2_n(1) <= BlackPF_n or Car1_n;
|
||||
S1_n(1) <= Car1 nand (Car2_n nand Car3_4_n);
|
||||
R_n(1) <= CollRst1_n;
|
||||
|
||||
R_n(2) <= CollRst1_n;
|
||||
S1_n(2) <= Car1_n or WhitePF_n;
|
||||
|
||||
R_n(4) <= CollRst2_n;
|
||||
S1_n(4) <= Car2_n or WhitePF_n;
|
||||
|
||||
S2_n(3) <= BlackPF_n or Car2_n;
|
||||
S1_n(3) <= Car2 nand (Car1_n nand Car3_4_n);
|
||||
R_n(3) <= CollRst2_n;
|
||||
|
||||
end rtl;
|
||||
436
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/cpu_mem.vhd
Normal file
436
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/cpu_mem.vhd
Normal file
@@ -0,0 +1,436 @@
|
||||
-- CPU, RAM, ROM and address decoder for Kee Games Sprint 2
|
||||
-- (c) 2017 James Sweet
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
use IEEE.STD_LOGIC_UNSIGNED.all;
|
||||
|
||||
entity CPU_mem is
|
||||
port(
|
||||
CLK12 : in std_logic;
|
||||
CLK6 : in std_logic; -- 6MHz on schematic
|
||||
Reset_n : in std_logic;
|
||||
VCount : in std_logic_vector(7 downto 0);
|
||||
HCount : in std_logic_vector(8 downto 0);
|
||||
Vblank_s : in std_logic; -- Vblank* on schematic
|
||||
Vreset : in std_logic;
|
||||
Hsync_n : in std_logic;
|
||||
Test_n : in std_logic;
|
||||
Attract : out std_logic;
|
||||
Skid1 : out std_logic;
|
||||
Skid2 : out std_logic;
|
||||
NoiseReset_n : out std_logic;
|
||||
CollRst1_n : out std_logic;
|
||||
CollRst2_n : out std_logic;
|
||||
Lamp1 : out std_logic;
|
||||
Lamp2 : out std_logic;
|
||||
SteerRst1_n : out std_logic;
|
||||
SteerRst2_n : out std_logic;
|
||||
PHI1_O : out std_logic;
|
||||
PHI2_O : out std_logic;
|
||||
DISPLAY : out std_logic_vector(7 downto 0);
|
||||
IO_Adr : out std_logic_vector(9 downto 0);
|
||||
Collisions1 : in std_logic_vector(1 downto 0);
|
||||
Collisions2 : in std_logic_vector(1 downto 0);
|
||||
Inputs : in std_logic_vector(1 downto 0)
|
||||
);
|
||||
end CPU_mem;
|
||||
|
||||
architecture rtl of CPU_mem is
|
||||
|
||||
signal cpu_clk : std_logic;
|
||||
signal PHI1 : std_logic;
|
||||
signal PHI2 : std_logic;
|
||||
signal Q5 : std_logic;
|
||||
signal Q6 : std_logic;
|
||||
signal A7_2 : std_logic;
|
||||
signal A7_5 : std_logic;
|
||||
signal A7_7 : std_logic;
|
||||
|
||||
signal A8_6 : std_logic;
|
||||
|
||||
signal H256 : std_logic;
|
||||
signal H256_n : std_logic;
|
||||
signal H128 : std_logic;
|
||||
signal H64 : std_logic;
|
||||
signal H32 : std_logic;
|
||||
signal H16 : std_logic;
|
||||
signal H8 : std_logic;
|
||||
signal H4 : std_logic;
|
||||
|
||||
signal V128 : std_logic;
|
||||
signal V64 : std_logic;
|
||||
signal V32 : std_logic;
|
||||
signal V16 : std_logic;
|
||||
signal V8 : std_logic;
|
||||
|
||||
signal IRQ_n : std_logic;
|
||||
signal NMI_n : std_logic;
|
||||
signal RW_n : std_logic;
|
||||
signal RnW : std_logic;
|
||||
signal A : std_logic_vector(15 downto 0);
|
||||
signal ADR : std_logic_vector(9 downto 0);
|
||||
signal cpuDin : std_logic_vector(7 downto 0);
|
||||
signal cpuDout : std_logic_vector(7 downto 0);
|
||||
signal DBUS_n : std_logic_vector(7 downto 0);
|
||||
signal DBUS : std_logic_vector(7 downto 0);
|
||||
|
||||
|
||||
signal ROM1_dout : std_logic_vector(7 downto 0);
|
||||
signal ROM2_dout : std_logic_vector(7 downto 0);
|
||||
signal ROM3_dout : std_logic_vector(7 downto 0);
|
||||
signal ROM4_dout : std_logic_vector(7 downto 0);
|
||||
signal ROM_dout : std_logic_vector(7 downto 0);
|
||||
|
||||
signal ROM1 : std_logic;
|
||||
signal ROM2 : std_logic;
|
||||
signal ROM3 : std_logic;
|
||||
signal ROM4 : std_logic;
|
||||
signal ROM_ce : std_logic;
|
||||
signal ROM_mux_in : std_logic_vector(3 downto 0);
|
||||
|
||||
signal cpuRAM_dout : std_logic_vector(7 downto 0);
|
||||
signal Vram_dout : std_logic_vector(7 downto 0);
|
||||
signal RAM_addr : std_logic_vector(9 downto 0) := (others => '0');
|
||||
signal Vram_addr : std_logic_vector(9 downto 0) := (others => '0');
|
||||
signal Scanbus : std_logic_vector(9 downto 0) := (others => '0');
|
||||
signal RAM_dout : std_logic_vector(7 downto 0);
|
||||
signal RAM_we : std_logic := '0';
|
||||
signal RAM_RW_n : std_logic := '1';
|
||||
signal RAM_ce_n : std_logic := '1';
|
||||
signal RAM_n : std_logic := '1';
|
||||
signal WRAM : std_logic := '0';
|
||||
signal WRITE_n : std_logic := '1';
|
||||
|
||||
signal F2_in : std_logic_vector(3 downto 0) := "0000";
|
||||
signal F2_out : std_logic_vector(9 downto 0) := "1111111111";
|
||||
signal D2_in : std_logic_vector(3 downto 0) := "0000";
|
||||
signal D2_out : std_logic_vector(9 downto 0) := "1111111111";
|
||||
signal E8_in : std_logic_vector(3 downto 0) := "0000";
|
||||
signal E8_out : std_logic_vector(9 downto 0) := "1111111111";
|
||||
signal P3_8 : std_logic := '0';
|
||||
|
||||
signal Sync : std_logic := '0';
|
||||
signal Sync_n : std_logic := '1';
|
||||
signal Switch_n : std_logic := '1';
|
||||
signal Display_n : std_logic := '1';
|
||||
signal Addec_bus : std_logic_vector(7 downto 0);
|
||||
|
||||
signal Timer_Reset_n : std_logic := '1';
|
||||
signal Collision1_n : std_logic := '1';
|
||||
signal Collision2_n : std_logic := '1';
|
||||
|
||||
signal J6_5 : std_logic := '0';
|
||||
signal J6_9 : std_logic := '0';
|
||||
|
||||
signal Coin1 : std_logic := '0';
|
||||
signal Coin2 : std_logic := '0';
|
||||
signal Input_mux : std_logic := '0';
|
||||
signal A8_8 : std_logic := '0';
|
||||
signal H9_Q_n : std_logic := '1';
|
||||
signal J9_out : std_logic_vector(7 downto 0);
|
||||
signal H8_en : std_logic := '0';
|
||||
signal Attract_int : std_logic := '1';
|
||||
|
||||
begin
|
||||
|
||||
H8 <= HCount(3);
|
||||
H16 <= HCount(4);
|
||||
H32 <= HCount(5);
|
||||
H64 <= HCount(6);
|
||||
H128 <= HCount(7);
|
||||
H256 <= HCount(8);
|
||||
H256_n <= (not HCount(8));
|
||||
|
||||
V8 <= VCount(3);
|
||||
V16 <= VCount(4);
|
||||
V32 <= VCount(5);
|
||||
V64 <= VCount(6);
|
||||
V128 <= VCount(7);
|
||||
|
||||
|
||||
CPU: entity work.T65
|
||||
port map(
|
||||
Enable => '1',
|
||||
Mode => "00",
|
||||
Res_n => reset_n,
|
||||
Clk => phi1,
|
||||
Rdy => '1',
|
||||
Abort_n => '1',
|
||||
IRQ_n => '1',
|
||||
NMI_n => NMI_n,
|
||||
SO_n => '1',
|
||||
R_W_n => RW_n,
|
||||
A(15 downto 0) => A,
|
||||
DI => cpuDin,
|
||||
DO => cpuDout
|
||||
);
|
||||
|
||||
DBUS_n <= (not cpuDout); -- Data bus to video RAM is inverted
|
||||
ADR(9 downto 7) <= (A(9) or WRAM) & (A(8) or WRAM) & (A(7) or WRAM);
|
||||
ADR(6 downto 0) <= A(6 downto 0);
|
||||
RnW <= (not RW_n);
|
||||
IO_Adr <= Adr;
|
||||
|
||||
NMI_n <= not (Vblank_s and Test_n);
|
||||
|
||||
|
||||
-- CPU clock
|
||||
H4 <= Hcount(2);
|
||||
CPU_clock: process(clk12, H4, Q5, Q6)
|
||||
begin
|
||||
if rising_edge(clk12) then
|
||||
Q5 <= H4;
|
||||
Q6 <= Q5;
|
||||
end if;
|
||||
phi1 <= not (Q5 or Q6); --?
|
||||
end process;
|
||||
|
||||
PHI2 <= (not PHI1);
|
||||
PHI1_O <= PHI1;
|
||||
PHI2_O <= PHI2;
|
||||
|
||||
|
||||
A8_6 <= not(RnW and PHI2 and H4 and WRITE_n);
|
||||
A7: process(clk12, A8_6) -- Shift register chain of 4 DFF's clocked by clk12, creates a delayed WRITE_n
|
||||
begin
|
||||
if rising_edge(clk12) then
|
||||
A7_2 <= A8_6;
|
||||
A7_5 <= A7_2;
|
||||
A7_7 <= A7_5;
|
||||
WRITE_n <= A7_7;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- Program ROMs
|
||||
A1: entity work.prog_rom1
|
||||
port map(
|
||||
clock => clk6,
|
||||
address => A(10) & ADR(9 downto 0),
|
||||
q => rom1_dout
|
||||
);
|
||||
|
||||
C1: entity work.prog_rom2
|
||||
port map(
|
||||
clock => clk6,
|
||||
address => A(10) & ADR(9 downto 0),
|
||||
q => rom2_dout
|
||||
);
|
||||
|
||||
D1: entity work.prog_rom3
|
||||
port map(
|
||||
clock => clk6,
|
||||
address => A(10) & ADR(9 downto 0),
|
||||
q => rom3_dout
|
||||
);
|
||||
|
||||
E1: entity work.prog_rom4
|
||||
port map(
|
||||
clock => clk6,
|
||||
address => A(10) & ADR(9 downto 0),
|
||||
q => rom4_dout
|
||||
);
|
||||
|
||||
-- ROM data mux
|
||||
ROM_mux_in <= (ROM1 & ROM2 & ROM3 & ROM4);
|
||||
ROM_mux: process(ROM_mux_in, rom1_dout, rom2_dout, rom3_dout, rom4_dout)
|
||||
begin
|
||||
ROM_dout <= (others => '0');
|
||||
case ROM_mux_in is
|
||||
when "1000" => rom_dout <= rom1_dout;
|
||||
when "0100" => rom_dout <= rom2_dout;
|
||||
when "0010" => rom_dout <= rom3_dout;
|
||||
when "0001" => rom_dout <= rom4_dout;
|
||||
when others => null;
|
||||
end case;
|
||||
end process;
|
||||
|
||||
-- RAM
|
||||
-- The original hardware multiplexes access to the RAM between the CPU and video hardware. In the FPGA it's
|
||||
-- easier to use dual-ported RAM
|
||||
RAM: entity work.ram1k_dp
|
||||
port map(
|
||||
clock => clk6,
|
||||
-- CPU side
|
||||
address_a => adr(9 downto 0),
|
||||
wren_a => ram_we,
|
||||
data_a => DBUS_n,
|
||||
q_a=> CPUram_dout,
|
||||
|
||||
-- Video side
|
||||
address_b => Vram_addr,
|
||||
wren_b => '0',
|
||||
data_b => x"FF",
|
||||
q_b => Vram_dout
|
||||
);
|
||||
|
||||
Vram_addr <= (V128 or H256_n) & (V64 or H256_n) & (V32 or H256_n) & (V16 and H256) & (V8 and H256) & H128 & H64 & H32 & H16 & H8;
|
||||
|
||||
-- Real hardware has both WE and CE which are selected by K2 according to the state of the phase 2 clock
|
||||
-- Altera block RAM has active high WE, original RAM had active low WE
|
||||
ram_we <= (not Write_n) and (not Display_n) and Phi2;
|
||||
|
||||
-- Rising edge of phi2 clock latches inverted output of VRAM data bus
|
||||
F5: process(phi2)
|
||||
begin
|
||||
if rising_edge(phi2) then
|
||||
display <= not Vram_dout;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- Address decoder
|
||||
-- A15 and A14 are not used
|
||||
-- Original circuit uses a bipolar PROM in the address decoder, this could be replaced with combinational logic
|
||||
|
||||
-- E2 PROM
|
||||
E2: entity work.addec_prom
|
||||
port map(
|
||||
clock => clk12,
|
||||
address => A(13 downto 9),
|
||||
q => addec_bus
|
||||
);
|
||||
|
||||
F2_in <= addec_bus(0) & addec_bus(1) & addec_bus(2) & addec_bus(3);
|
||||
WRAM <= addec_bus(4);
|
||||
D2_in <= RnW & addec_bus(5) & addec_bus(6) & addec_bus(7);
|
||||
|
||||
-- Decoder code could be cleaned up a bit, unused decoder states are not explicitly implemented
|
||||
F2: process(F2_in)
|
||||
begin
|
||||
case F2_in is
|
||||
when "0000" =>
|
||||
F2_out <= "1111111110";
|
||||
when "0001" =>
|
||||
F2_out <= "1111111101";
|
||||
when "0010" =>
|
||||
F2_out <= "1111111011";
|
||||
when "0011" =>
|
||||
F2_out <= "1111110111";
|
||||
when "0100" =>
|
||||
F2_out <= "1111101111";
|
||||
when "0101" =>
|
||||
F2_out <= "1111011111";
|
||||
when "0110" =>
|
||||
F2_out <= "1110111111";
|
||||
when "0111" =>
|
||||
F2_out <= "1101111111";
|
||||
when others =>
|
||||
F2_out <= "1111111111";
|
||||
end case;
|
||||
end process;
|
||||
|
||||
ROM1 <= (F2_out(0) nand F2_out(1));
|
||||
ROM2 <= (F2_out(2) nand F2_out(3));
|
||||
ROM3 <= (F2_out(4) nand F2_out(5));
|
||||
ROM4 <= (F2_out(6) nand F2_out(7));
|
||||
ROM_ce <= (ROM1 or ROM2 or ROM3 or ROM4);
|
||||
|
||||
D2: process(D2_in)
|
||||
begin
|
||||
case D2_in is
|
||||
when "0000" =>
|
||||
D2_out <= "1111111110";
|
||||
when "0001" =>
|
||||
D2_out <= "1111111101";
|
||||
when "0010" =>
|
||||
D2_out <= "1111111011";
|
||||
when "0011" =>
|
||||
D2_out <= "1111110111";
|
||||
when "0100" =>
|
||||
D2_out <= "1111101111";
|
||||
when "1000" =>
|
||||
D2_out <= "1011111111";
|
||||
when "1001" =>
|
||||
D2_out <= "0111111111";
|
||||
when others =>
|
||||
D2_out <= "1111111111";
|
||||
end case;
|
||||
end process;
|
||||
|
||||
RAM_n <= D2_out(0);
|
||||
SYNC_n <= D2_out(1);
|
||||
SYNC <= (not SYNC_n);
|
||||
SWITCH_n <= D2_out(2);
|
||||
COLLISION1_n <= D2_out(3);
|
||||
COLLISION2_n <= D2_out(4);
|
||||
DISPLAY_n <= (D2_out(0) and D2_out(8));
|
||||
P3_8 <= (D2_out(9) or WRITE_n);
|
||||
|
||||
E8_in <= P3_8 & ADR(9 downto 7);
|
||||
|
||||
E8: process(E8_in)
|
||||
begin
|
||||
case E8_in is
|
||||
when "0000" =>
|
||||
E8_out <= "1111111110";
|
||||
when "0001" =>
|
||||
E8_out <= "1111111101";
|
||||
when "0010" =>
|
||||
E8_out <= "1111111011";
|
||||
when "0011" =>
|
||||
E8_out <= "1111110111";
|
||||
when "0100" =>
|
||||
E8_out <= "1111101111";
|
||||
when "0101" =>
|
||||
E8_out <= "1111011111";
|
||||
when "0110" =>
|
||||
E8_out <= "1110111111";
|
||||
when others =>
|
||||
E8_out <= "1111111111";
|
||||
end case;
|
||||
end process;
|
||||
|
||||
H8_en <= E8_out(0);
|
||||
Timer_Reset_n <= E8_out(1);
|
||||
CollRst1_n <= E8_out(2);
|
||||
CollRst2_n <= E8_out(3);
|
||||
SteerRst1_n <= E8_out(4);
|
||||
SteerRst2_n <= E8_out(5);
|
||||
NoiseReset_n <= E8_out(6);
|
||||
|
||||
-- H8 9334
|
||||
H8_dec: process(clk6, Adr)
|
||||
begin
|
||||
if rising_edge(clk6) then
|
||||
if (H8_en = '0') then
|
||||
case Adr(6 downto 4) is
|
||||
when "000" => Attract_int <= Adr(0);
|
||||
when "001" => Skid1 <= Adr(0);
|
||||
when "010" => Skid2 <= Adr(0);
|
||||
when "011" => LAMP1 <= Adr(0);
|
||||
when "100" => LAMP2 <= Adr(0);
|
||||
when "101" => null; -- "Spare" on schematic
|
||||
when "110" => null;
|
||||
when "111" => null;
|
||||
when others => null;
|
||||
end case;
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
Attract <= Attract_Int;
|
||||
|
||||
-- CPU Din mux
|
||||
cpuDin <= ROM_dout when rom_ce = '1' else
|
||||
(not CPUram_dout) when Display_n = '0' else -- Remember RAM data is inverted
|
||||
VCount(7) & VBlank_s & Vreset & Attract_int & "1111" when Sync_n = '0' else -- Using V128 (VCount(7)) in place of 60Hz mains reference
|
||||
Collisions1 & "111111" when Collision1_n = '0' else
|
||||
Collisions2 & "111111" when Collision2_n = '0' else
|
||||
Inputs & "111111" when SWITCH_n = '0' else
|
||||
x"FF";
|
||||
|
||||
end rtl;
|
||||
33
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/dac.sv
Normal file
33
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/dac.sv
Normal file
@@ -0,0 +1,33 @@
|
||||
//
|
||||
// PWM DAC
|
||||
//
|
||||
// MSBI is the highest bit number. NOT amount of bits!
|
||||
//
|
||||
module dac #(parameter MSBI=13, parameter INV=1'b1)
|
||||
(
|
||||
output reg DACout, //Average Output feeding analog lowpass
|
||||
input [MSBI:0] DACin, //DAC input (excess 2**MSBI)
|
||||
input CLK,
|
||||
input RESET
|
||||
);
|
||||
|
||||
reg [MSBI+2:0] DeltaAdder; //Output of Delta Adder
|
||||
reg [MSBI+2:0] SigmaAdder; //Output of Sigma Adder
|
||||
reg [MSBI+2:0] SigmaLatch; //Latches output of Sigma Adder
|
||||
reg [MSBI+2:0] DeltaB; //B input of Delta Adder
|
||||
|
||||
always @(*) DeltaB = {SigmaLatch[MSBI+2], SigmaLatch[MSBI+2]} << (MSBI+1);
|
||||
always @(*) DeltaAdder = DACin + DeltaB;
|
||||
always @(*) SigmaAdder = DeltaAdder + SigmaLatch;
|
||||
|
||||
always @(posedge CLK or posedge RESET) begin
|
||||
if(RESET) begin
|
||||
SigmaLatch <= 1'b1 << (MSBI+1);
|
||||
DACout <= INV;
|
||||
end else begin
|
||||
SigmaLatch <= SigmaAdder;
|
||||
DACout <= SigmaLatch[MSBI+2] ^ INV;
|
||||
end
|
||||
end
|
||||
|
||||
endmodule
|
||||
454
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/hq2x.sv
Normal file
454
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/hq2x.sv
Normal file
@@ -0,0 +1,454 @@
|
||||
//
|
||||
//
|
||||
// Copyright (c) 2012-2013 Ludvig Strigeus
|
||||
// Copyright (c) 2017 Sorgelig
|
||||
//
|
||||
// This program is GPL Licensed. See COPYING for the full license.
|
||||
//
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// synopsys translate_off
|
||||
`timescale 1 ps / 1 ps
|
||||
// synopsys translate_on
|
||||
|
||||
`define BITS_TO_FIT(N) ( \
|
||||
N <= 2 ? 0 : \
|
||||
N <= 4 ? 1 : \
|
||||
N <= 8 ? 2 : \
|
||||
N <= 16 ? 3 : \
|
||||
N <= 32 ? 4 : \
|
||||
N <= 64 ? 5 : \
|
||||
N <= 128 ? 6 : \
|
||||
N <= 256 ? 7 : \
|
||||
N <= 512 ? 8 : \
|
||||
N <=1024 ? 9 : 10 )
|
||||
|
||||
module hq2x_in #(parameter LENGTH, parameter DWIDTH)
|
||||
(
|
||||
input clk,
|
||||
|
||||
input [AWIDTH:0] rdaddr,
|
||||
input rdbuf,
|
||||
output[DWIDTH:0] q,
|
||||
|
||||
input [AWIDTH:0] wraddr,
|
||||
input wrbuf,
|
||||
input [DWIDTH:0] data,
|
||||
input wren
|
||||
);
|
||||
|
||||
localparam AWIDTH = `BITS_TO_FIT(LENGTH);
|
||||
wire [DWIDTH:0] out[2];
|
||||
assign q = out[rdbuf];
|
||||
|
||||
hq2x_buf #(.NUMWORDS(LENGTH), .AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) buf0(clk,data,rdaddr,wraddr,wren && (wrbuf == 0),out[0]);
|
||||
hq2x_buf #(.NUMWORDS(LENGTH), .AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) buf1(clk,data,rdaddr,wraddr,wren && (wrbuf == 1),out[1]);
|
||||
endmodule
|
||||
|
||||
|
||||
module hq2x_out #(parameter LENGTH, parameter DWIDTH)
|
||||
(
|
||||
input clk,
|
||||
|
||||
input [AWIDTH:0] rdaddr,
|
||||
input [1:0] rdbuf,
|
||||
output[DWIDTH:0] q,
|
||||
|
||||
input [AWIDTH:0] wraddr,
|
||||
input [1:0] wrbuf,
|
||||
input [DWIDTH:0] data,
|
||||
input wren
|
||||
);
|
||||
|
||||
localparam AWIDTH = `BITS_TO_FIT(LENGTH*2);
|
||||
wire [DWIDTH:0] out[4];
|
||||
assign q = out[rdbuf];
|
||||
|
||||
hq2x_buf #(.NUMWORDS(LENGTH*2), .AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) buf0(clk,data,rdaddr,wraddr,wren && (wrbuf == 0),out[0]);
|
||||
hq2x_buf #(.NUMWORDS(LENGTH*2), .AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) buf1(clk,data,rdaddr,wraddr,wren && (wrbuf == 1),out[1]);
|
||||
hq2x_buf #(.NUMWORDS(LENGTH*2), .AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) buf2(clk,data,rdaddr,wraddr,wren && (wrbuf == 2),out[2]);
|
||||
hq2x_buf #(.NUMWORDS(LENGTH*2), .AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) buf3(clk,data,rdaddr,wraddr,wren && (wrbuf == 3),out[3]);
|
||||
endmodule
|
||||
|
||||
|
||||
module hq2x_buf #(parameter NUMWORDS, parameter AWIDTH, parameter DWIDTH)
|
||||
(
|
||||
input clock,
|
||||
input [DWIDTH:0] data,
|
||||
input [AWIDTH:0] rdaddress,
|
||||
input [AWIDTH:0] wraddress,
|
||||
input wren,
|
||||
output [DWIDTH:0] q
|
||||
);
|
||||
|
||||
altsyncram altsyncram_component (
|
||||
.address_a (wraddress),
|
||||
.clock0 (clock),
|
||||
.data_a (data),
|
||||
.wren_a (wren),
|
||||
.address_b (rdaddress),
|
||||
.q_b(q),
|
||||
.aclr0 (1'b0),
|
||||
.aclr1 (1'b0),
|
||||
.addressstall_a (1'b0),
|
||||
.addressstall_b (1'b0),
|
||||
.byteena_a (1'b1),
|
||||
.byteena_b (1'b1),
|
||||
.clock1 (1'b1),
|
||||
.clocken0 (1'b1),
|
||||
.clocken1 (1'b1),
|
||||
.clocken2 (1'b1),
|
||||
.clocken3 (1'b1),
|
||||
.data_b ({(DWIDTH+1){1'b1}}),
|
||||
.eccstatus (),
|
||||
.q_a (),
|
||||
.rden_a (1'b1),
|
||||
.rden_b (1'b1),
|
||||
.wren_b (1'b0));
|
||||
defparam
|
||||
altsyncram_component.address_aclr_b = "NONE",
|
||||
altsyncram_component.address_reg_b = "CLOCK0",
|
||||
altsyncram_component.clock_enable_input_a = "BYPASS",
|
||||
altsyncram_component.clock_enable_input_b = "BYPASS",
|
||||
altsyncram_component.clock_enable_output_b = "BYPASS",
|
||||
altsyncram_component.intended_device_family = "Cyclone III",
|
||||
altsyncram_component.lpm_type = "altsyncram",
|
||||
altsyncram_component.numwords_a = NUMWORDS,
|
||||
altsyncram_component.numwords_b = NUMWORDS,
|
||||
altsyncram_component.operation_mode = "DUAL_PORT",
|
||||
altsyncram_component.outdata_aclr_b = "NONE",
|
||||
altsyncram_component.outdata_reg_b = "UNREGISTERED",
|
||||
altsyncram_component.power_up_uninitialized = "FALSE",
|
||||
altsyncram_component.read_during_write_mode_mixed_ports = "DONT_CARE",
|
||||
altsyncram_component.widthad_a = AWIDTH+1,
|
||||
altsyncram_component.widthad_b = AWIDTH+1,
|
||||
altsyncram_component.width_a = DWIDTH+1,
|
||||
altsyncram_component.width_b = DWIDTH+1,
|
||||
altsyncram_component.width_byteena_a = 1;
|
||||
|
||||
endmodule
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
module DiffCheck
|
||||
(
|
||||
input [17:0] rgb1,
|
||||
input [17:0] rgb2,
|
||||
output result
|
||||
);
|
||||
|
||||
wire [5:0] r = rgb1[5:1] - rgb2[5:1];
|
||||
wire [5:0] g = rgb1[11:7] - rgb2[11:7];
|
||||
wire [5:0] b = rgb1[17:13] - rgb2[17:13];
|
||||
wire [6:0] t = $signed(r) + $signed(b);
|
||||
wire [6:0] gx = {g[5], g};
|
||||
wire [7:0] y = $signed(t) + $signed(gx);
|
||||
wire [6:0] u = $signed(r) - $signed(b);
|
||||
wire [7:0] v = $signed({g, 1'b0}) - $signed(t);
|
||||
|
||||
// if y is inside (-24..24)
|
||||
wire y_inside = (y < 8'h18 || y >= 8'he8);
|
||||
|
||||
// if u is inside (-4, 4)
|
||||
wire u_inside = (u < 7'h4 || u >= 7'h7c);
|
||||
|
||||
// if v is inside (-6, 6)
|
||||
wire v_inside = (v < 8'h6 || v >= 8'hfA);
|
||||
assign result = !(y_inside && u_inside && v_inside);
|
||||
endmodule
|
||||
|
||||
module InnerBlend
|
||||
(
|
||||
input [8:0] Op,
|
||||
input [5:0] A,
|
||||
input [5:0] B,
|
||||
input [5:0] C,
|
||||
output [5:0] O
|
||||
);
|
||||
|
||||
function [8:0] mul6x3;
|
||||
input [5:0] op1;
|
||||
input [2:0] op2;
|
||||
begin
|
||||
mul6x3 = 9'd0;
|
||||
if(op2[0]) mul6x3 = mul6x3 + op1;
|
||||
if(op2[1]) mul6x3 = mul6x3 + {op1, 1'b0};
|
||||
if(op2[2]) mul6x3 = mul6x3 + {op1, 2'b00};
|
||||
end
|
||||
endfunction
|
||||
|
||||
wire OpOnes = Op[4];
|
||||
wire [8:0] Amul = mul6x3(A, Op[7:5]);
|
||||
wire [8:0] Bmul = mul6x3(B, {Op[3:2], 1'b0});
|
||||
wire [8:0] Cmul = mul6x3(C, {Op[1:0], 1'b0});
|
||||
wire [8:0] At = Amul;
|
||||
wire [8:0] Bt = (OpOnes == 0) ? Bmul : {3'b0, B};
|
||||
wire [8:0] Ct = (OpOnes == 0) ? Cmul : {3'b0, C};
|
||||
wire [9:0] Res = {At, 1'b0} + Bt + Ct;
|
||||
assign O = Op[8] ? A : Res[9:4];
|
||||
endmodule
|
||||
|
||||
module Blend
|
||||
(
|
||||
input [5:0] rule,
|
||||
input disable_hq2x,
|
||||
input [17:0] E,
|
||||
input [17:0] A,
|
||||
input [17:0] B,
|
||||
input [17:0] D,
|
||||
input [17:0] F,
|
||||
input [17:0] H,
|
||||
output [17:0] Result
|
||||
);
|
||||
|
||||
reg [1:0] input_ctrl;
|
||||
reg [8:0] op;
|
||||
localparam BLEND0 = 9'b1_xxx_x_xx_xx; // 0: A
|
||||
localparam BLEND1 = 9'b0_110_0_10_00; // 1: (A * 12 + B * 4) >> 4
|
||||
localparam BLEND2 = 9'b0_100_0_10_10; // 2: (A * 8 + B * 4 + C * 4) >> 4
|
||||
localparam BLEND3 = 9'b0_101_0_10_01; // 3: (A * 10 + B * 4 + C * 2) >> 4
|
||||
localparam BLEND4 = 9'b0_110_0_01_01; // 4: (A * 12 + B * 2 + C * 2) >> 4
|
||||
localparam BLEND5 = 9'b0_010_0_11_11; // 5: (A * 4 + (B + C) * 6) >> 4
|
||||
localparam BLEND6 = 9'b0_111_1_xx_xx; // 6: (A * 14 + B + C) >> 4
|
||||
localparam AB = 2'b00;
|
||||
localparam AD = 2'b01;
|
||||
localparam DB = 2'b10;
|
||||
localparam BD = 2'b11;
|
||||
wire is_diff;
|
||||
DiffCheck diff_checker(rule[1] ? B : H, rule[0] ? D : F, is_diff);
|
||||
|
||||
always @* begin
|
||||
case({!is_diff, rule[5:2]})
|
||||
1,17: {op, input_ctrl} = {BLEND1, AB};
|
||||
2,18: {op, input_ctrl} = {BLEND1, DB};
|
||||
3,19: {op, input_ctrl} = {BLEND1, BD};
|
||||
4,20: {op, input_ctrl} = {BLEND2, DB};
|
||||
5,21: {op, input_ctrl} = {BLEND2, AB};
|
||||
6,22: {op, input_ctrl} = {BLEND2, AD};
|
||||
|
||||
8: {op, input_ctrl} = {BLEND0, 2'bxx};
|
||||
9: {op, input_ctrl} = {BLEND0, 2'bxx};
|
||||
10: {op, input_ctrl} = {BLEND0, 2'bxx};
|
||||
11: {op, input_ctrl} = {BLEND1, AB};
|
||||
12: {op, input_ctrl} = {BLEND1, AB};
|
||||
13: {op, input_ctrl} = {BLEND1, AB};
|
||||
14: {op, input_ctrl} = {BLEND1, DB};
|
||||
15: {op, input_ctrl} = {BLEND1, BD};
|
||||
|
||||
24: {op, input_ctrl} = {BLEND2, DB};
|
||||
25: {op, input_ctrl} = {BLEND5, DB};
|
||||
26: {op, input_ctrl} = {BLEND6, DB};
|
||||
27: {op, input_ctrl} = {BLEND2, DB};
|
||||
28: {op, input_ctrl} = {BLEND4, DB};
|
||||
29: {op, input_ctrl} = {BLEND5, DB};
|
||||
30: {op, input_ctrl} = {BLEND3, BD};
|
||||
31: {op, input_ctrl} = {BLEND3, DB};
|
||||
default: {op, input_ctrl} = 11'bx;
|
||||
endcase
|
||||
|
||||
// Setting op[8] effectively disables HQ2X because blend will always return E.
|
||||
if (disable_hq2x) op[8] = 1;
|
||||
end
|
||||
|
||||
// Generate inputs to the inner blender. Valid combinations.
|
||||
// 00: E A B
|
||||
// 01: E A D
|
||||
// 10: E D B
|
||||
// 11: E B D
|
||||
wire [17:0] Input1 = E;
|
||||
wire [17:0] Input2 = !input_ctrl[1] ? A :
|
||||
!input_ctrl[0] ? D : B;
|
||||
|
||||
wire [17:0] Input3 = !input_ctrl[0] ? B : D;
|
||||
InnerBlend inner_blend1(op, Input1[5:0], Input2[5:0], Input3[5:0], Result[5:0]);
|
||||
InnerBlend inner_blend2(op, Input1[11:6], Input2[11:6], Input3[11:6], Result[11:6]);
|
||||
InnerBlend inner_blend3(op, Input1[17:12], Input2[17:12], Input3[17:12], Result[17:12]);
|
||||
endmodule
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
module Hq2x #(parameter LENGTH, parameter HALF_DEPTH)
|
||||
(
|
||||
input clk,
|
||||
input ce_x4,
|
||||
input [DWIDTH:0] inputpixel,
|
||||
input mono,
|
||||
input disable_hq2x,
|
||||
input reset_frame,
|
||||
input reset_line,
|
||||
input [1:0] read_y,
|
||||
input [AWIDTH+1:0] read_x,
|
||||
output [DWIDTH:0] outpixel
|
||||
);
|
||||
|
||||
|
||||
localparam AWIDTH = `BITS_TO_FIT(LENGTH);
|
||||
localparam DWIDTH = HALF_DEPTH ? 8 : 17;
|
||||
|
||||
wire [5:0] hqTable[256] = '{
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 47, 35, 23, 15, 55, 39,
|
||||
19, 19, 26, 58, 19, 19, 26, 58, 23, 15, 35, 35, 23, 15, 7, 35,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 55, 39, 23, 15, 51, 43,
|
||||
19, 19, 26, 58, 19, 19, 26, 58, 23, 15, 51, 35, 23, 15, 7, 43,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 61, 35, 35, 23, 61, 51, 35,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 51, 35, 23, 15, 51, 35,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 61, 7, 35, 23, 61, 7, 43,
|
||||
19, 19, 26, 11, 19, 19, 26, 58, 23, 15, 51, 35, 23, 61, 7, 43,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 47, 35, 23, 15, 55, 39,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 51, 35, 23, 15, 51, 35,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 55, 39, 23, 15, 51, 43,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 51, 39, 23, 15, 7, 43,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 51, 35, 23, 15, 51, 39,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 51, 35, 23, 15, 7, 35,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 51, 35, 23, 15, 7, 43,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 7, 35, 23, 15, 7, 43
|
||||
};
|
||||
|
||||
reg [17:0] Prev0, Prev1, Prev2, Curr0, Curr1, Next0, Next1, Next2;
|
||||
reg [17:0] A, B, D, F, G, H;
|
||||
reg [7:0] pattern, nextpatt;
|
||||
reg [1:0] i;
|
||||
reg [7:0] y;
|
||||
|
||||
wire curbuf = y[0];
|
||||
reg prevbuf = 0;
|
||||
wire iobuf = !curbuf;
|
||||
|
||||
wire diff0, diff1;
|
||||
DiffCheck diffcheck0(Curr1, (i == 0) ? Prev0 : (i == 1) ? Curr0 : (i == 2) ? Prev2 : Next1, diff0);
|
||||
DiffCheck diffcheck1(Curr1, (i == 0) ? Prev1 : (i == 1) ? Next0 : (i == 2) ? Curr2 : Next2, diff1);
|
||||
|
||||
wire [7:0] new_pattern = {diff1, diff0, pattern[7:2]};
|
||||
|
||||
wire [17:0] X = (i == 0) ? A : (i == 1) ? Prev1 : (i == 2) ? Next1 : G;
|
||||
wire [17:0] blend_result;
|
||||
Blend blender(hqTable[nextpatt], disable_hq2x, Curr0, X, B, D, F, H, blend_result);
|
||||
|
||||
reg Curr2_addr1;
|
||||
reg [AWIDTH:0] Curr2_addr2;
|
||||
wire [17:0] Curr2 = HALF_DEPTH ? h2rgb(Curr2tmp) : Curr2tmp;
|
||||
wire [DWIDTH:0] Curr2tmp;
|
||||
|
||||
reg [AWIDTH:0] wrin_addr2;
|
||||
reg [DWIDTH:0] wrpix;
|
||||
reg wrin_en;
|
||||
|
||||
function [17:0] h2rgb;
|
||||
input [8:0] v;
|
||||
begin
|
||||
h2rgb = mono ? {v[5:3],v[2:0], v[5:3],v[2:0], v[5:3],v[2:0]} : {v[8:6],v[8:6],v[5:3],v[5:3],v[2:0],v[2:0]};
|
||||
end
|
||||
endfunction
|
||||
|
||||
function [8:0] rgb2h;
|
||||
input [17:0] v;
|
||||
begin
|
||||
rgb2h = mono ? {3'b000, v[17:15], v[14:12]} : {v[17:15], v[11:9], v[5:3]};
|
||||
end
|
||||
endfunction
|
||||
|
||||
hq2x_in #(.LENGTH(LENGTH), .DWIDTH(DWIDTH)) hq2x_in
|
||||
(
|
||||
.clk(clk),
|
||||
|
||||
.rdaddr(Curr2_addr2),
|
||||
.rdbuf(Curr2_addr1),
|
||||
.q(Curr2tmp),
|
||||
|
||||
.wraddr(wrin_addr2),
|
||||
.wrbuf(iobuf),
|
||||
.data(wrpix),
|
||||
.wren(wrin_en)
|
||||
);
|
||||
|
||||
reg [1:0] wrout_addr1;
|
||||
reg [AWIDTH+1:0] wrout_addr2;
|
||||
reg wrout_en;
|
||||
reg [DWIDTH:0] wrdata;
|
||||
|
||||
hq2x_out #(.LENGTH(LENGTH), .DWIDTH(DWIDTH)) hq2x_out
|
||||
(
|
||||
.clk(clk),
|
||||
|
||||
.rdaddr(read_x),
|
||||
.rdbuf(read_y),
|
||||
.q(outpixel),
|
||||
|
||||
.wraddr(wrout_addr2),
|
||||
.wrbuf(wrout_addr1),
|
||||
.data(wrdata),
|
||||
.wren(wrout_en)
|
||||
);
|
||||
|
||||
always @(posedge clk) begin
|
||||
reg [AWIDTH:0] offs;
|
||||
reg old_reset_line;
|
||||
reg old_reset_frame;
|
||||
|
||||
wrout_en <= 0;
|
||||
wrin_en <= 0;
|
||||
|
||||
if(ce_x4) begin
|
||||
|
||||
pattern <= new_pattern;
|
||||
|
||||
if(~&offs) begin
|
||||
if (i == 0) begin
|
||||
Curr2_addr1 <= prevbuf;
|
||||
Curr2_addr2 <= offs;
|
||||
end
|
||||
if (i == 1) begin
|
||||
Prev2 <= Curr2;
|
||||
Curr2_addr1 <= curbuf;
|
||||
Curr2_addr2 <= offs;
|
||||
end
|
||||
if (i == 2) begin
|
||||
Next2 <= HALF_DEPTH ? h2rgb(inputpixel) : inputpixel;
|
||||
wrpix <= inputpixel;
|
||||
wrin_addr2 <= offs;
|
||||
wrin_en <= 1;
|
||||
end
|
||||
if (i == 3) begin
|
||||
offs <= offs + 1'd1;
|
||||
end
|
||||
|
||||
if(HALF_DEPTH) wrdata <= rgb2h(blend_result);
|
||||
else wrdata <= blend_result;
|
||||
|
||||
wrout_addr1 <= {curbuf, i[1]};
|
||||
wrout_addr2 <= {offs, i[1]^i[0]};
|
||||
wrout_en <= 1;
|
||||
end
|
||||
|
||||
if(i==3) begin
|
||||
nextpatt <= {new_pattern[7:6], new_pattern[3], new_pattern[5], new_pattern[2], new_pattern[4], new_pattern[1:0]};
|
||||
{A, G} <= {Prev0, Next0};
|
||||
{B, F, H, D} <= {Prev1, Curr2, Next1, Curr0};
|
||||
{Prev0, Prev1} <= {Prev1, Prev2};
|
||||
{Curr0, Curr1} <= {Curr1, Curr2};
|
||||
{Next0, Next1} <= {Next1, Next2};
|
||||
end else begin
|
||||
nextpatt <= {nextpatt[5], nextpatt[3], nextpatt[0], nextpatt[6], nextpatt[1], nextpatt[7], nextpatt[4], nextpatt[2]};
|
||||
{B, F, H, D} <= {F, H, D, B};
|
||||
end
|
||||
|
||||
i <= i + 1'b1;
|
||||
if(old_reset_line && ~reset_line) begin
|
||||
old_reset_frame <= reset_frame;
|
||||
offs <= 0;
|
||||
i <= 0;
|
||||
y <= y + 1'd1;
|
||||
prevbuf <= curbuf;
|
||||
if(old_reset_frame & ~reset_frame) begin
|
||||
y <= 0;
|
||||
prevbuf <= 0;
|
||||
end
|
||||
end
|
||||
|
||||
old_reset_line <= reset_line;
|
||||
end
|
||||
end
|
||||
|
||||
endmodule // Hq2x
|
||||
79
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/keyboard.sv
Normal file
79
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/keyboard.sv
Normal file
@@ -0,0 +1,79 @@
|
||||
|
||||
|
||||
module keyboard
|
||||
(
|
||||
input clk,
|
||||
input reset,
|
||||
input ps2_kbd_clk,
|
||||
input ps2_kbd_data,
|
||||
|
||||
output reg[7:0] joystick
|
||||
);
|
||||
|
||||
reg [11:0] shift_reg = 12'hFFF;
|
||||
wire[11:0] kdata = {ps2_kbd_data,shift_reg[11:1]};
|
||||
wire [7:0] kcode = kdata[9:2];
|
||||
reg release_btn = 0;
|
||||
|
||||
reg [7:0] code;
|
||||
reg input_strobe = 0;
|
||||
|
||||
always @(negedge clk) begin
|
||||
reg old_reset = 0;
|
||||
|
||||
old_reset <= reset;
|
||||
|
||||
if(~old_reset & reset)begin
|
||||
joystick <= 0;
|
||||
end
|
||||
|
||||
if(input_strobe) begin
|
||||
case(code)
|
||||
'h75: joystick[3] <= ~release_btn; // arrow up
|
||||
'h72: joystick[2] <= ~release_btn; // arrow down
|
||||
'h6B: joystick[1] <= ~release_btn; // arrow left
|
||||
'h74: joystick[0] <= ~release_btn; // arrow right
|
||||
|
||||
'h29: joystick[4] <= ~release_btn; // Space
|
||||
'h05: joystick[5] <= ~release_btn; // F1
|
||||
'h06: joystick[6] <= ~release_btn; // F2
|
||||
'h76: joystick[7] <= ~release_btn; // Escape
|
||||
endcase
|
||||
end
|
||||
end
|
||||
|
||||
always @(posedge clk) begin
|
||||
reg [3:0] prev_clk = 0;
|
||||
reg old_reset = 0;
|
||||
reg action = 0;
|
||||
|
||||
old_reset <= reset;
|
||||
input_strobe <= 0;
|
||||
|
||||
if(~old_reset & reset)begin
|
||||
prev_clk <= 0;
|
||||
shift_reg <= 12'hFFF;
|
||||
end else begin
|
||||
prev_clk <= {ps2_kbd_clk,prev_clk[3:1]};
|
||||
if(prev_clk == 1) begin
|
||||
if (kdata[11] & ^kdata[10:2] & ~kdata[1] & kdata[0]) begin
|
||||
shift_reg <= 12'hFFF;
|
||||
if (kcode == 8'he0) ;
|
||||
// Extended key code follows
|
||||
else if (kcode == 8'hf0)
|
||||
// Release code follows
|
||||
action <= 1;
|
||||
else begin
|
||||
// Cancel extended/release flags for next time
|
||||
action <= 0;
|
||||
release_btn <= action;
|
||||
code <= kcode;
|
||||
input_strobe <= 1;
|
||||
end
|
||||
end else begin
|
||||
shift_reg <= kdata;
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
endmodule
|
||||
491
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/mist_io.sv
Normal file
491
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/mist_io.sv
Normal file
@@ -0,0 +1,491 @@
|
||||
//
|
||||
// mist_io.v
|
||||
//
|
||||
// mist_io for the MiST board
|
||||
// http://code.google.com/p/mist-board/
|
||||
//
|
||||
// Copyright (c) 2014 Till Harbaum <till@harbaum.org>
|
||||
//
|
||||
// This source file is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published
|
||||
// by the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This source file is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////
|
||||
|
||||
//
|
||||
// Use buffer to access SD card. It's time-critical part.
|
||||
// Made module synchroneous with 2 clock domains: clk_sys and SPI_SCK
|
||||
// (Sorgelig)
|
||||
//
|
||||
// for synchronous projects default value for PS2DIV is fine for any frequency of system clock.
|
||||
// clk_ps2 = clk_sys/(PS2DIV*2)
|
||||
//
|
||||
|
||||
module mist_io #(parameter STRLEN=0, parameter PS2DIV=100)
|
||||
(
|
||||
|
||||
// parameter STRLEN and the actual length of conf_str have to match
|
||||
input [(8*STRLEN)-1:0] conf_str,
|
||||
|
||||
// Global clock. It should be around 100MHz (higher is better).
|
||||
input clk_sys,
|
||||
|
||||
// Global SPI clock from ARM. 24MHz
|
||||
input SPI_SCK,
|
||||
|
||||
input CONF_DATA0,
|
||||
input SPI_SS2,
|
||||
output SPI_DO,
|
||||
input SPI_DI,
|
||||
|
||||
output reg [7:0] joystick_0,
|
||||
output reg [7:0] joystick_1,
|
||||
output reg [15:0] joystick_analog_0,
|
||||
output reg [15:0] joystick_analog_1,
|
||||
output [1:0] buttons,
|
||||
output [1:0] switches,
|
||||
output scandoubler_disable,
|
||||
output ypbpr,
|
||||
|
||||
output reg [31:0] status,
|
||||
|
||||
// SD config
|
||||
input sd_conf,
|
||||
input sd_sdhc,
|
||||
output img_mounted, // signaling that new image has been mounted
|
||||
output reg [31:0] img_size, // size of image in bytes
|
||||
|
||||
// SD block level access
|
||||
input [31:0] sd_lba,
|
||||
input sd_rd,
|
||||
input sd_wr,
|
||||
output reg sd_ack,
|
||||
output reg sd_ack_conf,
|
||||
|
||||
// SD byte level access. Signals for 2-PORT altsyncram.
|
||||
output reg [8:0] sd_buff_addr,
|
||||
output reg [7:0] sd_buff_dout,
|
||||
input [7:0] sd_buff_din,
|
||||
output reg sd_buff_wr,
|
||||
|
||||
// ps2 keyboard emulation
|
||||
output ps2_kbd_clk,
|
||||
output reg ps2_kbd_data,
|
||||
output ps2_mouse_clk,
|
||||
output reg ps2_mouse_data,
|
||||
input ps2_caps_led,
|
||||
|
||||
// ARM -> FPGA download
|
||||
output reg ioctl_download = 0, // signal indicating an active download
|
||||
output reg [7:0] ioctl_index, // menu index used to upload the file
|
||||
output ioctl_wr,
|
||||
output reg [23:0] ioctl_addr,
|
||||
output reg [7:0] ioctl_dout
|
||||
);
|
||||
|
||||
reg [7:0] b_data;
|
||||
reg [6:0] sbuf;
|
||||
reg [7:0] cmd;
|
||||
reg [2:0] bit_cnt; // counts bits 0-7 0-7 ...
|
||||
reg [9:0] byte_cnt; // counts bytes
|
||||
reg [7:0] but_sw;
|
||||
reg [2:0] stick_idx;
|
||||
|
||||
reg mount_strobe = 0;
|
||||
assign img_mounted = mount_strobe;
|
||||
|
||||
assign buttons = but_sw[1:0];
|
||||
assign switches = but_sw[3:2];
|
||||
assign scandoubler_disable = but_sw[4];
|
||||
assign ypbpr = but_sw[5];
|
||||
|
||||
wire [7:0] spi_dout = { sbuf, SPI_DI};
|
||||
|
||||
// this variant of user_io is for 8 bit cores (type == a4) only
|
||||
wire [7:0] core_type = 8'ha4;
|
||||
|
||||
// command byte read by the io controller
|
||||
wire [7:0] sd_cmd = { 4'h5, sd_conf, sd_sdhc, sd_wr, sd_rd };
|
||||
|
||||
reg spi_do;
|
||||
assign SPI_DO = CONF_DATA0 ? 1'bZ : spi_do;
|
||||
|
||||
wire [7:0] kbd_led = { 2'b01, 4'b0000, ps2_caps_led, 1'b1};
|
||||
|
||||
// drive MISO only when transmitting core id
|
||||
always@(negedge SPI_SCK) begin
|
||||
if(!CONF_DATA0) begin
|
||||
// first byte returned is always core type, further bytes are
|
||||
// command dependent
|
||||
if(byte_cnt == 0) begin
|
||||
spi_do <= core_type[~bit_cnt];
|
||||
|
||||
end else begin
|
||||
case(cmd)
|
||||
// reading config string
|
||||
8'h14: begin
|
||||
// returning a byte from string
|
||||
if(byte_cnt < STRLEN + 1) spi_do <= conf_str[{STRLEN - byte_cnt,~bit_cnt}];
|
||||
else spi_do <= 0;
|
||||
end
|
||||
|
||||
// reading sd card status
|
||||
8'h16: begin
|
||||
if(byte_cnt == 1) spi_do <= sd_cmd[~bit_cnt];
|
||||
else if((byte_cnt >= 2) && (byte_cnt < 6)) spi_do <= sd_lba[{5-byte_cnt, ~bit_cnt}];
|
||||
else spi_do <= 0;
|
||||
end
|
||||
|
||||
// reading sd card write data
|
||||
8'h18:
|
||||
spi_do <= b_data[~bit_cnt];
|
||||
|
||||
// reading keyboard LED status
|
||||
8'h1f:
|
||||
spi_do <= kbd_led[~bit_cnt];
|
||||
|
||||
default:
|
||||
spi_do <= 0;
|
||||
endcase
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
reg b_wr2,b_wr3;
|
||||
always @(negedge clk_sys) begin
|
||||
b_wr3 <= b_wr2;
|
||||
sd_buff_wr <= b_wr3;
|
||||
end
|
||||
|
||||
// SPI receiver
|
||||
always@(posedge SPI_SCK or posedge CONF_DATA0) begin
|
||||
|
||||
if(CONF_DATA0) begin
|
||||
b_wr2 <= 0;
|
||||
bit_cnt <= 0;
|
||||
byte_cnt <= 0;
|
||||
sd_ack <= 0;
|
||||
sd_ack_conf <= 0;
|
||||
end else begin
|
||||
b_wr2 <= 0;
|
||||
|
||||
sbuf <= spi_dout[6:0];
|
||||
bit_cnt <= bit_cnt + 1'd1;
|
||||
if(bit_cnt == 5) begin
|
||||
if (byte_cnt == 0) sd_buff_addr <= 0;
|
||||
if((byte_cnt != 0) & (sd_buff_addr != 511)) sd_buff_addr <= sd_buff_addr + 1'b1;
|
||||
if((byte_cnt == 1) & ((cmd == 8'h17) | (cmd == 8'h19))) sd_buff_addr <= 0;
|
||||
end
|
||||
|
||||
// finished reading command byte
|
||||
if(bit_cnt == 7) begin
|
||||
if(~&byte_cnt) byte_cnt <= byte_cnt + 8'd1;
|
||||
if(byte_cnt == 0) begin
|
||||
cmd <= spi_dout;
|
||||
|
||||
if(spi_dout == 8'h19) begin
|
||||
sd_ack_conf <= 1;
|
||||
sd_buff_addr <= 0;
|
||||
end
|
||||
if((spi_dout == 8'h17) || (spi_dout == 8'h18)) begin
|
||||
sd_ack <= 1;
|
||||
sd_buff_addr <= 0;
|
||||
end
|
||||
if(spi_dout == 8'h18) b_data <= sd_buff_din;
|
||||
|
||||
mount_strobe <= 0;
|
||||
|
||||
end else begin
|
||||
|
||||
case(cmd)
|
||||
// buttons and switches
|
||||
8'h01: but_sw <= spi_dout;
|
||||
8'h02: joystick_0 <= spi_dout;
|
||||
8'h03: joystick_1 <= spi_dout;
|
||||
|
||||
// store incoming ps2 mouse bytes
|
||||
8'h04: begin
|
||||
ps2_mouse_fifo[ps2_mouse_wptr] <= spi_dout;
|
||||
ps2_mouse_wptr <= ps2_mouse_wptr + 1'd1;
|
||||
end
|
||||
|
||||
// store incoming ps2 keyboard bytes
|
||||
8'h05: begin
|
||||
ps2_kbd_fifo[ps2_kbd_wptr] <= spi_dout;
|
||||
ps2_kbd_wptr <= ps2_kbd_wptr + 1'd1;
|
||||
end
|
||||
|
||||
8'h15: status[7:0] <= spi_dout;
|
||||
|
||||
// send SD config IO -> FPGA
|
||||
// flag that download begins
|
||||
// sd card knows data is config if sd_dout_strobe is asserted
|
||||
// with sd_ack still being inactive (low)
|
||||
8'h19,
|
||||
// send sector IO -> FPGA
|
||||
// flag that download begins
|
||||
8'h17: begin
|
||||
sd_buff_dout <= spi_dout;
|
||||
b_wr2 <= 1;
|
||||
end
|
||||
|
||||
8'h18: b_data <= sd_buff_din;
|
||||
|
||||
// joystick analog
|
||||
8'h1a: begin
|
||||
// first byte is joystick index
|
||||
if(byte_cnt == 1) stick_idx <= spi_dout[2:0];
|
||||
else if(byte_cnt == 2) begin
|
||||
// second byte is x axis
|
||||
if(stick_idx == 0) joystick_analog_0[15:8] <= spi_dout;
|
||||
else if(stick_idx == 1) joystick_analog_1[15:8] <= spi_dout;
|
||||
end else if(byte_cnt == 3) begin
|
||||
// third byte is y axis
|
||||
if(stick_idx == 0) joystick_analog_0[7:0] <= spi_dout;
|
||||
else if(stick_idx == 1) joystick_analog_1[7:0] <= spi_dout;
|
||||
end
|
||||
end
|
||||
|
||||
// notify image selection
|
||||
8'h1c: mount_strobe <= 1;
|
||||
|
||||
// send image info
|
||||
8'h1d: if(byte_cnt<5) img_size[(byte_cnt-1)<<3 +:8] <= spi_dout;
|
||||
|
||||
// status, 32bit version
|
||||
8'h1e: if(byte_cnt<5) status[(byte_cnt-1)<<3 +:8] <= spi_dout;
|
||||
default: ;
|
||||
endcase
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
/////////////////////////////// PS2 ///////////////////////////////
|
||||
// 8 byte fifos to store ps2 bytes
|
||||
localparam PS2_FIFO_BITS = 3;
|
||||
|
||||
reg clk_ps2;
|
||||
always @(negedge clk_sys) begin
|
||||
integer cnt;
|
||||
cnt <= cnt + 1'd1;
|
||||
if(cnt == PS2DIV) begin
|
||||
clk_ps2 <= ~clk_ps2;
|
||||
cnt <= 0;
|
||||
end
|
||||
end
|
||||
|
||||
// keyboard
|
||||
reg [7:0] ps2_kbd_fifo[1<<PS2_FIFO_BITS];
|
||||
reg [PS2_FIFO_BITS-1:0] ps2_kbd_wptr;
|
||||
reg [PS2_FIFO_BITS-1:0] ps2_kbd_rptr;
|
||||
|
||||
// ps2 transmitter state machine
|
||||
reg [3:0] ps2_kbd_tx_state;
|
||||
reg [7:0] ps2_kbd_tx_byte;
|
||||
reg ps2_kbd_parity;
|
||||
|
||||
assign ps2_kbd_clk = clk_ps2 || (ps2_kbd_tx_state == 0);
|
||||
|
||||
// ps2 transmitter
|
||||
// Takes a byte from the FIFO and sends it in a ps2 compliant serial format.
|
||||
reg ps2_kbd_r_inc;
|
||||
always@(posedge clk_sys) begin
|
||||
reg old_clk;
|
||||
old_clk <= clk_ps2;
|
||||
if(~old_clk & clk_ps2) begin
|
||||
ps2_kbd_r_inc <= 0;
|
||||
|
||||
if(ps2_kbd_r_inc) ps2_kbd_rptr <= ps2_kbd_rptr + 1'd1;
|
||||
|
||||
// transmitter is idle?
|
||||
if(ps2_kbd_tx_state == 0) begin
|
||||
// data in fifo present?
|
||||
if(ps2_kbd_wptr != ps2_kbd_rptr) begin
|
||||
// load tx register from fifo
|
||||
ps2_kbd_tx_byte <= ps2_kbd_fifo[ps2_kbd_rptr];
|
||||
ps2_kbd_r_inc <= 1;
|
||||
|
||||
// reset parity
|
||||
ps2_kbd_parity <= 1;
|
||||
|
||||
// start transmitter
|
||||
ps2_kbd_tx_state <= 1;
|
||||
|
||||
// put start bit on data line
|
||||
ps2_kbd_data <= 0; // start bit is 0
|
||||
end
|
||||
end else begin
|
||||
|
||||
// transmission of 8 data bits
|
||||
if((ps2_kbd_tx_state >= 1)&&(ps2_kbd_tx_state < 9)) begin
|
||||
ps2_kbd_data <= ps2_kbd_tx_byte[0]; // data bits
|
||||
ps2_kbd_tx_byte[6:0] <= ps2_kbd_tx_byte[7:1]; // shift down
|
||||
if(ps2_kbd_tx_byte[0])
|
||||
ps2_kbd_parity <= !ps2_kbd_parity;
|
||||
end
|
||||
|
||||
// transmission of parity
|
||||
if(ps2_kbd_tx_state == 9) ps2_kbd_data <= ps2_kbd_parity;
|
||||
|
||||
// transmission of stop bit
|
||||
if(ps2_kbd_tx_state == 10) ps2_kbd_data <= 1; // stop bit is 1
|
||||
|
||||
// advance state machine
|
||||
if(ps2_kbd_tx_state < 11) ps2_kbd_tx_state <= ps2_kbd_tx_state + 1'd1;
|
||||
else ps2_kbd_tx_state <= 0;
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
// mouse
|
||||
reg [7:0] ps2_mouse_fifo[1<<PS2_FIFO_BITS];
|
||||
reg [PS2_FIFO_BITS-1:0] ps2_mouse_wptr;
|
||||
reg [PS2_FIFO_BITS-1:0] ps2_mouse_rptr;
|
||||
|
||||
// ps2 transmitter state machine
|
||||
reg [3:0] ps2_mouse_tx_state;
|
||||
reg [7:0] ps2_mouse_tx_byte;
|
||||
reg ps2_mouse_parity;
|
||||
|
||||
assign ps2_mouse_clk = clk_ps2 || (ps2_mouse_tx_state == 0);
|
||||
|
||||
// ps2 transmitter
|
||||
// Takes a byte from the FIFO and sends it in a ps2 compliant serial format.
|
||||
reg ps2_mouse_r_inc;
|
||||
always@(posedge clk_sys) begin
|
||||
reg old_clk;
|
||||
old_clk <= clk_ps2;
|
||||
if(~old_clk & clk_ps2) begin
|
||||
ps2_mouse_r_inc <= 0;
|
||||
|
||||
if(ps2_mouse_r_inc) ps2_mouse_rptr <= ps2_mouse_rptr + 1'd1;
|
||||
|
||||
// transmitter is idle?
|
||||
if(ps2_mouse_tx_state == 0) begin
|
||||
// data in fifo present?
|
||||
if(ps2_mouse_wptr != ps2_mouse_rptr) begin
|
||||
// load tx register from fifo
|
||||
ps2_mouse_tx_byte <= ps2_mouse_fifo[ps2_mouse_rptr];
|
||||
ps2_mouse_r_inc <= 1;
|
||||
|
||||
// reset parity
|
||||
ps2_mouse_parity <= 1;
|
||||
|
||||
// start transmitter
|
||||
ps2_mouse_tx_state <= 1;
|
||||
|
||||
// put start bit on data line
|
||||
ps2_mouse_data <= 0; // start bit is 0
|
||||
end
|
||||
end else begin
|
||||
|
||||
// transmission of 8 data bits
|
||||
if((ps2_mouse_tx_state >= 1)&&(ps2_mouse_tx_state < 9)) begin
|
||||
ps2_mouse_data <= ps2_mouse_tx_byte[0]; // data bits
|
||||
ps2_mouse_tx_byte[6:0] <= ps2_mouse_tx_byte[7:1]; // shift down
|
||||
if(ps2_mouse_tx_byte[0])
|
||||
ps2_mouse_parity <= !ps2_mouse_parity;
|
||||
end
|
||||
|
||||
// transmission of parity
|
||||
if(ps2_mouse_tx_state == 9) ps2_mouse_data <= ps2_mouse_parity;
|
||||
|
||||
// transmission of stop bit
|
||||
if(ps2_mouse_tx_state == 10) ps2_mouse_data <= 1; // stop bit is 1
|
||||
|
||||
// advance state machine
|
||||
if(ps2_mouse_tx_state < 11) ps2_mouse_tx_state <= ps2_mouse_tx_state + 1'd1;
|
||||
else ps2_mouse_tx_state <= 0;
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
/////////////////////////////// DOWNLOADING ///////////////////////////////
|
||||
|
||||
reg [7:0] data_w;
|
||||
reg [23:0] addr_w;
|
||||
reg rclk = 0;
|
||||
|
||||
localparam UIO_FILE_TX = 8'h53;
|
||||
localparam UIO_FILE_TX_DAT = 8'h54;
|
||||
localparam UIO_FILE_INDEX = 8'h55;
|
||||
|
||||
// data_io has its own SPI interface to the io controller
|
||||
always@(posedge SPI_SCK, posedge SPI_SS2) begin
|
||||
reg [6:0] sbuf;
|
||||
reg [7:0] cmd;
|
||||
reg [4:0] cnt;
|
||||
reg [23:0] addr;
|
||||
|
||||
if(SPI_SS2) cnt <= 0;
|
||||
else begin
|
||||
rclk <= 0;
|
||||
|
||||
// don't shift in last bit. It is evaluated directly
|
||||
// when writing to ram
|
||||
if(cnt != 15) sbuf <= { sbuf[5:0], SPI_DI};
|
||||
|
||||
// increase target address after write
|
||||
if(rclk) addr <= addr + 1'd1;
|
||||
|
||||
// count 0-7 8-15 8-15 ...
|
||||
if(cnt < 15) cnt <= cnt + 1'd1;
|
||||
else cnt <= 8;
|
||||
|
||||
// finished command byte
|
||||
if(cnt == 7) cmd <= {sbuf, SPI_DI};
|
||||
|
||||
// prepare/end transmission
|
||||
if((cmd == UIO_FILE_TX) && (cnt == 15)) begin
|
||||
// prepare
|
||||
if(SPI_DI) begin
|
||||
addr <= 0;
|
||||
ioctl_download <= 1;
|
||||
end else begin
|
||||
addr_w <= addr;
|
||||
ioctl_download <= 0;
|
||||
end
|
||||
end
|
||||
|
||||
// command 0x54: UIO_FILE_TX
|
||||
if((cmd == UIO_FILE_TX_DAT) && (cnt == 15)) begin
|
||||
addr_w <= addr;
|
||||
data_w <= {sbuf, SPI_DI};
|
||||
rclk <= 1;
|
||||
end
|
||||
|
||||
// expose file (menu) index
|
||||
if((cmd == UIO_FILE_INDEX) && (cnt == 15)) ioctl_index <= {sbuf, SPI_DI};
|
||||
end
|
||||
end
|
||||
|
||||
assign ioctl_wr = |ioctl_wrd;
|
||||
reg [1:0] ioctl_wrd;
|
||||
|
||||
always@(negedge clk_sys) begin
|
||||
reg rclkD, rclkD2;
|
||||
|
||||
rclkD <= rclk;
|
||||
rclkD2 <= rclkD;
|
||||
ioctl_wrd<= {ioctl_wrd[0],1'b0};
|
||||
|
||||
if(rclkD & ~rclkD2) begin
|
||||
ioctl_dout <= data_w;
|
||||
ioctl_addr <= addr_w;
|
||||
ioctl_wrd <= 2'b11;
|
||||
end
|
||||
end
|
||||
|
||||
endmodule
|
||||
361
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/motion.vhd
Normal file
361
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/motion.vhd
Normal file
@@ -0,0 +1,361 @@
|
||||
-- Motion object generation circuitry for Kee Games Sprint 2
|
||||
-- This generates the four cars which are the only moving objects in the game
|
||||
-- (c) 2017 James Sweet
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
use IEEE.STD_LOGIC_UNSIGNED.all;
|
||||
|
||||
entity motion is
|
||||
port(
|
||||
CLK6 : in std_logic; -- 6MHz* on schematic
|
||||
CLK12 : in std_logic;
|
||||
PHI2 : in std_logic;
|
||||
DISPLAY : in std_logic_vector(7 downto 0);
|
||||
H256_s : in std_logic; -- 256H* on schematic
|
||||
VCount : in std_logic_vector(7 downto 0);
|
||||
HCount : in std_logic_vector(8 downto 0);
|
||||
Crash_n : out std_logic;
|
||||
Motor1_n : out std_logic;
|
||||
Motor2_n : out std_logic;
|
||||
Car1 : out std_logic;
|
||||
Car1_n : out std_logic;
|
||||
Car2 : out std_logic;
|
||||
Car2_n : out std_logic;
|
||||
Car3_4_n : out std_logic
|
||||
);
|
||||
end motion;
|
||||
|
||||
architecture rtl of motion is
|
||||
|
||||
signal phi0 : std_logic;
|
||||
|
||||
signal LDH1_n : std_logic;
|
||||
signal LDH2_n : std_logic;
|
||||
signal LDH3_n : std_logic;
|
||||
signal LDH4_n : std_logic;
|
||||
|
||||
signal LDV1A_n : std_logic;
|
||||
signal LDV2A_n : std_logic;
|
||||
signal LDV3A_n : std_logic;
|
||||
signal LDV4A_n : std_logic;
|
||||
|
||||
signal LDV1B_n : std_logic;
|
||||
signal LDV2B_n : std_logic;
|
||||
signal LDV3B_n : std_logic;
|
||||
signal LDV4B_n : std_logic;
|
||||
|
||||
signal Car1_Inh : std_logic;
|
||||
signal Car2_Inh : std_logic;
|
||||
signal Car3_Inh : std_logic;
|
||||
signal Car4_Inh : std_logic;
|
||||
|
||||
signal LM4_sum : std_logic_vector(7 downto 0) := x"00";
|
||||
signal N4_8 : std_logic;
|
||||
|
||||
signal H256_n : std_logic;
|
||||
signal H256 : std_logic;
|
||||
signal H64 : std_logic;
|
||||
signal H32 : std_logic;
|
||||
signal H16 : std_logic;
|
||||
signal H8 : std_logic;
|
||||
signal H4 : std_logic;
|
||||
|
||||
signal L5_reg : std_logic_vector(3 downto 0);
|
||||
|
||||
signal J8_3 : std_logic;
|
||||
signal J8_6 : std_logic;
|
||||
|
||||
signal K8_in : std_logic_vector(3 downto 0);
|
||||
signal K8_out : std_logic_vector(9 downto 0);
|
||||
signal P7_in : std_logic_vector(3 downto 0);
|
||||
signal P7_out : std_logic_vector(9 downto 0);
|
||||
|
||||
signal Car1_Hpos : std_logic_vector(7 downto 0) := x"00";
|
||||
signal Car2_Hpos : std_logic_vector(7 downto 0) := x"00";
|
||||
signal Car3_Hpos : std_logic_vector(7 downto 0) := x"00";
|
||||
signal Car4_Hpos : std_logic_vector(7 downto 0) := x"00";
|
||||
|
||||
signal Car1_reg : std_logic_vector(15 downto 0) := x"0000";
|
||||
signal Car2_reg : std_logic_vector(15 downto 0) := x"0000";
|
||||
signal Car3_reg : std_logic_vector(15 downto 0) := x"0000";
|
||||
signal Car4_reg : std_logic_vector(15 downto 0) := x"0000";
|
||||
|
||||
signal Vid : std_logic_vector(7 downto 0);
|
||||
|
||||
|
||||
begin
|
||||
phi0 <= phi2;
|
||||
|
||||
H4 <= Hcount(2);
|
||||
H8 <= Hcount(3);
|
||||
H16 <= Hcount(4);
|
||||
H32 <= Hcount(5);
|
||||
H64 <= Hcount(6);
|
||||
H256 <= Hcount(8);
|
||||
H256_n <= not(Hcount(8));
|
||||
|
||||
-- Vertical line comparator
|
||||
LM4_sum <= Display + VCount;
|
||||
N4_8 <= not(LM4_sum(7) and LM4_sum(6) and LM4_sum(5) and LM4_sum(4) and LM4_sum(3) and H256_n and H64 and H8);
|
||||
|
||||
|
||||
-- D type flip-flops in L5
|
||||
L5: process(phi2, N4_8, LM4_sum(2 downto 0))
|
||||
begin
|
||||
if rising_edge(phi2) then
|
||||
L5_reg <= N4_8 & LM4_sum(2 downto 0);
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- Motion object PROMs - These contain the car images for all 32 possible orientations
|
||||
J6: entity work.j6_prom
|
||||
port map(
|
||||
clock => clk6,
|
||||
address => Display(7 downto 3) & L5_reg(2 downto 0) & phi2,
|
||||
q => Vid(7 downto 4)
|
||||
);
|
||||
|
||||
K6: entity work.k6_prom
|
||||
port map(
|
||||
clock => clk6,
|
||||
address => Display(7 downto 3) & L5_reg(2 downto 0) & phi2,
|
||||
q => Vid(3 downto 0)
|
||||
);
|
||||
|
||||
|
||||
-- Some glue logic
|
||||
J8_3 <= (H4 or L5_reg(3));
|
||||
J8_6 <= (H256 or H64 or H4);
|
||||
|
||||
|
||||
-- Decoders
|
||||
-- Making K8 synchronous fixes weird problem with ghost artifacts of motion objects
|
||||
K8_in <= J8_3 & H32 & H16 & phi0;
|
||||
K8: process(clk6, K8_in)
|
||||
begin
|
||||
if rising_edge(clk6) then
|
||||
case K8_in is
|
||||
when "0000" =>
|
||||
K8_out <= "1111111110";
|
||||
when "0001" =>
|
||||
K8_out <= "1111111101";
|
||||
when "0010" =>
|
||||
K8_out <= "1111111011";
|
||||
when "0011" =>
|
||||
K8_out <= "1111110111";
|
||||
when "0100" =>
|
||||
K8_out <= "1111101111";
|
||||
when "0101" =>
|
||||
K8_out <= "1111011111";
|
||||
when "0110" =>
|
||||
K8_out <= "1110111111";
|
||||
when "0111" =>
|
||||
K8_out <= "1101111111";
|
||||
when "1000" =>
|
||||
K8_out <= "1011111111";
|
||||
when "1001" =>
|
||||
K8_out <= "0111111111";
|
||||
when others =>
|
||||
K8_out <= "1111111111";
|
||||
end case;
|
||||
end if;
|
||||
end process;
|
||||
LDV3B_n <= K8_out(7);
|
||||
LDV3A_n <= K8_out(6);
|
||||
LDV2B_n <= K8_out(5);
|
||||
LDV2A_n <= K8_out(4);
|
||||
LDV1B_n <= K8_out(3);
|
||||
LDV1A_n <= K8_out(2);
|
||||
LDV4B_n <= K8_out(1);
|
||||
LDV4A_n <= K8_out(0);
|
||||
|
||||
P7_in <= J8_6 & H32 & H16 & H8;
|
||||
P7: process(P7_in)
|
||||
begin
|
||||
case P7_in is
|
||||
when "0000" =>
|
||||
P7_out <= "1111111110";
|
||||
when "0001" =>
|
||||
P7_out <= "1111111101";
|
||||
when "0010" =>
|
||||
P7_out <= "1111111011";
|
||||
when "0011" =>
|
||||
P7_out <= "1111110111";
|
||||
when "0100" =>
|
||||
P7_out <= "1111101111";
|
||||
when "0101" =>
|
||||
P7_out <= "1111011111";
|
||||
when "0110" =>
|
||||
P7_out <= "1110111111";
|
||||
when "0111" =>
|
||||
P7_out <= "1101111111";
|
||||
when "1000" =>
|
||||
P7_out <= "1011111111";
|
||||
when "1001" =>
|
||||
P7_out <= "0111111111";
|
||||
when others =>
|
||||
P7_out <= "1111111111";
|
||||
end case;
|
||||
end process;
|
||||
Crash_n <= P7_out(7);
|
||||
Motor2_n <= P7_out(6);
|
||||
Motor1_n <= P7_out(5);
|
||||
LDH4_n <= P7_out(4);
|
||||
LDH3_n <= P7_out(3);
|
||||
LDH2_n <= P7_out(2);
|
||||
LDH1_n <= P7_out(1);
|
||||
|
||||
|
||||
-- Car 1 Horizontal position counter
|
||||
-- This combines two 74163s at locations R5 and R6 on the PCB
|
||||
R5_6: process(clk6, H256_s, LDH1_n, Display)
|
||||
begin
|
||||
if rising_edge(clk6) then
|
||||
if LDH1_n = '0' then -- preload the counter
|
||||
Car1_Hpos <= Display;
|
||||
elsif H256_s = '1' then -- increment the counter
|
||||
Car1_Hpos <= Car1_Hpos + '1';
|
||||
end if;
|
||||
if Car1_Hpos(7 downto 3) = "11111" then
|
||||
Car1_Inh <= '0';
|
||||
else
|
||||
Car1_Inh <= '1';
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Car 1 video shift register
|
||||
-- This combines two 74165s at locations M7 and N7 on the PCB
|
||||
M_N7: process(clk12, Car1_Inh, LDV1A_n, LDV1B_n, Vid)
|
||||
begin
|
||||
if LDV1A_n = '0' then
|
||||
Car1_reg(7 downto 0) <= Vid(7 downto 1) & '0'; -- Preload the LSB register
|
||||
elsif LDV1B_n = '0' then
|
||||
Car1_reg(15 downto 8) <= Vid(7 downto 0); -- Preload the MSB register
|
||||
elsif rising_edge(clk12) then
|
||||
if Car1_Inh = '0' then
|
||||
Car1_reg <= '0' & Car1_reg(15 downto 1);
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
Car1 <= Car1_reg(0);
|
||||
Car1_n <= not Car1_reg(0);
|
||||
|
||||
|
||||
-- Car 2 Horizontal position counter
|
||||
-- This combines two 74LS163s at locations P5 and P6 on the PCB
|
||||
P5_6: process(clk6, H256_s, LDH2_n, Display)
|
||||
begin
|
||||
if rising_edge(clk6) then
|
||||
if LDH2_n = '0' then -- preload the counter
|
||||
Car2_Hpos <= Display;
|
||||
elsif H256_s = '1' then -- increment the counter
|
||||
Car2_Hpos <= Car2_Hpos + '1';
|
||||
end if;
|
||||
if Car2_Hpos(7 downto 3) = "11111" then
|
||||
Car2_Inh <= '0';
|
||||
else
|
||||
Car2_Inh <= '1';
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Car 2 video shift register
|
||||
K_L7: process(clk12, Car2_Inh, LDV2A_n, LDV2B_n, Vid)
|
||||
begin
|
||||
if LDV2A_n = '0' then
|
||||
Car2_reg(7 downto 0) <= Vid(7 downto 1) & '0'; -- Preload the LSB register
|
||||
elsif LDV2B_n = '0' then
|
||||
Car2_reg(15 downto 8) <= Vid(7 downto 0); -- Preload the MSB register
|
||||
elsif rising_edge(clk12) then
|
||||
if Car2_Inh = '0' then
|
||||
Car2_reg <= '0' & Car2_reg(15 downto 1);
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
Car2 <= Car2_reg(0);
|
||||
Car2_n <= not Car2_reg(0);
|
||||
|
||||
|
||||
-- Car 3 Horizontal position counter
|
||||
-- This combines two 74LS163s at locations N5 and N6 on the PCB
|
||||
N5_6: process(clk6, H256_s, LDH3_n, Display)
|
||||
begin
|
||||
if rising_edge(clk6) then
|
||||
if LDH3_n = '0' then -- preload the counter
|
||||
Car3_Hpos <= Display;
|
||||
elsif H256_s = '1' then -- increment the counter
|
||||
Car3_Hpos <= Car3_Hpos + '1';
|
||||
end if;
|
||||
if Car3_Hpos(7 downto 3) = "11111" then
|
||||
Car3_Inh <= '0';
|
||||
else
|
||||
Car3_Inh <= '1';
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Car 3 video shift register
|
||||
H_J7: process(clk12, Car3_Inh, LDV3A_n, LDV3B_n, Vid)
|
||||
begin
|
||||
if LDV3A_n = '0' then
|
||||
Car3_reg(7 downto 0) <= Vid(7 downto 1) & '0'; -- Preload the LSB register
|
||||
elsif LDV3B_n = '0' then
|
||||
Car3_reg(15 downto 8) <= Vid(7 downto 0); -- Preload the MSB register
|
||||
elsif rising_edge(clk12) then
|
||||
if Car3_Inh = '0' then
|
||||
Car3_reg <= '0' & Car3_reg(15 downto 1);
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- Car 4 Horizontal position counter
|
||||
-- This combines two 74LS163s at locations M5 and M6 on the PCB
|
||||
M5_6: process(clk6, H256_s, LDH4_n, Display)
|
||||
begin
|
||||
if rising_edge(clk6) then
|
||||
if LDH4_n = '0' then -- preload the counter
|
||||
Car4_Hpos <= Display;
|
||||
elsif H256_s = '1' then -- increment the counter
|
||||
Car4_Hpos <= Car4_Hpos + '1';
|
||||
end if;
|
||||
if Car4_Hpos(7 downto 3) = "11111" then
|
||||
Car4_Inh <= '0';
|
||||
else
|
||||
Car4_Inh <= '1';
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Car 4 video shift register
|
||||
E_F7: process(clk12, Car4_Inh, LDV4A_n, LDV4B_n, Vid)
|
||||
begin
|
||||
if LDV4A_n = '0' then
|
||||
Car4_reg(7 downto 0) <= Vid(7 downto 1) & '0'; -- Preload the LSB register
|
||||
elsif LDV4B_n = '0' then
|
||||
Car4_reg(15 downto 8) <= Vid(7 downto 0); -- Preload the MSB register
|
||||
elsif rising_edge(clk12) then
|
||||
if Car4_Inh = '0' then
|
||||
Car4_reg <= '0' & Car4_reg(15 downto 1);
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
Car3_4_n <= not (Car3_reg(0) or Car4_reg(0));
|
||||
|
||||
end rtl;
|
||||
179
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/osd.sv
Normal file
179
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/osd.sv
Normal file
@@ -0,0 +1,179 @@
|
||||
// A simple OSD implementation. Can be hooked up between a cores
|
||||
// VGA output and the physical VGA pins
|
||||
|
||||
module osd (
|
||||
// OSDs pixel clock, should be synchronous to cores pixel clock to
|
||||
// avoid jitter.
|
||||
input clk_sys,
|
||||
|
||||
// SPI interface
|
||||
input SPI_SCK,
|
||||
input SPI_SS3,
|
||||
input SPI_DI,
|
||||
|
||||
// VGA signals coming from core
|
||||
input [5:0] R_in,
|
||||
input [5:0] G_in,
|
||||
input [5:0] B_in,
|
||||
input HSync,
|
||||
input VSync,
|
||||
|
||||
// VGA signals going to video connector
|
||||
output [5:0] R_out,
|
||||
output [5:0] G_out,
|
||||
output [5:0] B_out
|
||||
);
|
||||
|
||||
parameter OSD_X_OFFSET = 10'd0;
|
||||
parameter OSD_Y_OFFSET = 10'd0;
|
||||
parameter OSD_COLOR = 3'd0;
|
||||
|
||||
localparam OSD_WIDTH = 10'd256;
|
||||
localparam OSD_HEIGHT = 10'd128;
|
||||
|
||||
// *********************************************************************************
|
||||
// spi client
|
||||
// *********************************************************************************
|
||||
|
||||
// this core supports only the display related OSD commands
|
||||
// of the minimig
|
||||
reg osd_enable;
|
||||
(* ramstyle = "no_rw_check" *) reg [7:0] osd_buffer[2047:0]; // the OSD buffer itself
|
||||
|
||||
// the OSD has its own SPI interface to the io controller
|
||||
always@(posedge SPI_SCK, posedge SPI_SS3) begin
|
||||
reg [4:0] cnt;
|
||||
reg [10:0] bcnt;
|
||||
reg [7:0] sbuf;
|
||||
reg [7:0] cmd;
|
||||
|
||||
if(SPI_SS3) begin
|
||||
cnt <= 0;
|
||||
bcnt <= 0;
|
||||
end else begin
|
||||
sbuf <= {sbuf[6:0], SPI_DI};
|
||||
|
||||
// 0:7 is command, rest payload
|
||||
if(cnt < 15) cnt <= cnt + 1'd1;
|
||||
else cnt <= 8;
|
||||
|
||||
if(cnt == 7) begin
|
||||
cmd <= {sbuf[6:0], SPI_DI};
|
||||
|
||||
// lower three command bits are line address
|
||||
bcnt <= {sbuf[1:0], SPI_DI, 8'h00};
|
||||
|
||||
// command 0x40: OSDCMDENABLE, OSDCMDDISABLE
|
||||
if(sbuf[6:3] == 4'b0100) osd_enable <= SPI_DI;
|
||||
end
|
||||
|
||||
// command 0x20: OSDCMDWRITE
|
||||
if((cmd[7:3] == 5'b00100) && (cnt == 15)) begin
|
||||
osd_buffer[bcnt] <= {sbuf[6:0], SPI_DI};
|
||||
bcnt <= bcnt + 1'd1;
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
// *********************************************************************************
|
||||
// video timing and sync polarity anaylsis
|
||||
// *********************************************************************************
|
||||
|
||||
// horizontal counter
|
||||
reg [9:0] h_cnt;
|
||||
reg [9:0] hs_low, hs_high;
|
||||
wire hs_pol = hs_high < hs_low;
|
||||
wire [9:0] dsp_width = hs_pol ? hs_low : hs_high;
|
||||
|
||||
// vertical counter
|
||||
reg [9:0] v_cnt;
|
||||
reg [9:0] vs_low, vs_high;
|
||||
wire vs_pol = vs_high < vs_low;
|
||||
wire [9:0] dsp_height = vs_pol ? vs_low : vs_high;
|
||||
|
||||
wire doublescan = (dsp_height>350);
|
||||
|
||||
reg ce_pix;
|
||||
always @(negedge clk_sys) begin
|
||||
integer cnt = 0;
|
||||
integer pixsz, pixcnt;
|
||||
reg hs;
|
||||
|
||||
cnt <= cnt + 1;
|
||||
hs <= HSync;
|
||||
|
||||
pixcnt <= pixcnt + 1;
|
||||
if(pixcnt == pixsz) pixcnt <= 0;
|
||||
ce_pix <= !pixcnt;
|
||||
|
||||
if(hs && ~HSync) begin
|
||||
cnt <= 0;
|
||||
pixsz <= (cnt >> 9) - 1;
|
||||
pixcnt <= 0;
|
||||
ce_pix <= 1;
|
||||
end
|
||||
end
|
||||
|
||||
always @(posedge clk_sys) begin
|
||||
reg hsD, hsD2;
|
||||
reg vsD, vsD2;
|
||||
|
||||
if(ce_pix) begin
|
||||
// bring hsync into local clock domain
|
||||
hsD <= HSync;
|
||||
hsD2 <= hsD;
|
||||
|
||||
// falling edge of HSync
|
||||
if(!hsD && hsD2) begin
|
||||
h_cnt <= 0;
|
||||
hs_high <= h_cnt;
|
||||
end
|
||||
|
||||
// rising edge of HSync
|
||||
else if(hsD && !hsD2) begin
|
||||
h_cnt <= 0;
|
||||
hs_low <= h_cnt;
|
||||
v_cnt <= v_cnt + 1'd1;
|
||||
end else begin
|
||||
h_cnt <= h_cnt + 1'd1;
|
||||
end
|
||||
|
||||
vsD <= VSync;
|
||||
vsD2 <= vsD;
|
||||
|
||||
// falling edge of VSync
|
||||
if(!vsD && vsD2) begin
|
||||
v_cnt <= 0;
|
||||
vs_high <= v_cnt;
|
||||
end
|
||||
|
||||
// rising edge of VSync
|
||||
else if(vsD && !vsD2) begin
|
||||
v_cnt <= 0;
|
||||
vs_low <= v_cnt;
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
// area in which OSD is being displayed
|
||||
wire [9:0] h_osd_start = ((dsp_width - OSD_WIDTH)>> 1) + OSD_X_OFFSET;
|
||||
wire [9:0] h_osd_end = h_osd_start + OSD_WIDTH;
|
||||
wire [9:0] v_osd_start = ((dsp_height- (OSD_HEIGHT<<doublescan))>> 1) + OSD_Y_OFFSET;
|
||||
wire [9:0] v_osd_end = v_osd_start + (OSD_HEIGHT<<doublescan);
|
||||
wire [9:0] osd_hcnt = h_cnt - h_osd_start + 1'd1; // one pixel offset for osd_byte register
|
||||
wire [9:0] osd_vcnt = v_cnt - v_osd_start;
|
||||
|
||||
wire osd_de = osd_enable &&
|
||||
(HSync != hs_pol) && (h_cnt >= h_osd_start) && (h_cnt < h_osd_end) &&
|
||||
(VSync != vs_pol) && (v_cnt >= v_osd_start) && (v_cnt < v_osd_end);
|
||||
|
||||
reg [7:0] osd_byte;
|
||||
always @(posedge clk_sys) if(ce_pix) osd_byte <= osd_buffer[{doublescan ? osd_vcnt[7:5] : osd_vcnt[6:4], osd_hcnt[7:0]}];
|
||||
|
||||
wire osd_pixel = osd_byte[doublescan ? osd_vcnt[4:2] : osd_vcnt[3:1]];
|
||||
|
||||
assign R_out = !osd_de ? R_in : {osd_pixel, osd_pixel, OSD_COLOR[2], R_in[5:3]};
|
||||
assign G_out = !osd_de ? G_in : {osd_pixel, osd_pixel, OSD_COLOR[1], G_in[5:3]};
|
||||
assign B_out = !osd_de ? B_in : {osd_pixel, osd_pixel, OSD_COLOR[0], B_in[5:3]};
|
||||
|
||||
endmodule
|
||||
148
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/playfield.vhd
Normal file
148
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/playfield.vhd
Normal file
@@ -0,0 +1,148 @@
|
||||
-- Playfield generation circuitry for Sprint 2 by Kee Games
|
||||
-- (c) 2017 James Sweet
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
use IEEE.STD_LOGIC_UNSIGNED.all;
|
||||
|
||||
entity playfield is
|
||||
port(
|
||||
clk6 : in std_logic;
|
||||
display : in std_logic_vector(7 downto 0);
|
||||
HCount : in std_logic_vector(8 downto 0);
|
||||
VCount : in std_logic_vector(7 downto 0);
|
||||
H256_s : out std_logic;
|
||||
HBlank : in std_logic;
|
||||
VBlank : in std_logic;
|
||||
VBlank_n_s : in std_logic; -- VBLANK* on the schematic
|
||||
HSync : in std_logic;
|
||||
VSync : in std_logic;
|
||||
CompSync_n_s : out std_logic; -- COMP SYNC* on schematic
|
||||
CompBlank_s : out std_logic; -- COMP BLANK* on schematic
|
||||
WhitePF_n : out std_logic;
|
||||
BlackPF_n : out std_logic
|
||||
);
|
||||
end playfield;
|
||||
|
||||
architecture rtl of playfield is
|
||||
|
||||
signal H1 : std_logic;
|
||||
signal H2 : std_logic;
|
||||
signal H4 : std_logic;
|
||||
signal H256 : std_logic;
|
||||
signal H256_n : std_logic;
|
||||
|
||||
signal V1 : std_logic;
|
||||
signal V2 : std_logic;
|
||||
signal V4 : std_logic;
|
||||
|
||||
signal char_addr : std_logic_vector(8 downto 0) := (others => '0');
|
||||
signal char_data : std_logic_vector(7 downto 0) := (others => '0');
|
||||
|
||||
signal shift_data : std_logic_vector(7 downto 0) := (others => '0');
|
||||
signal QH : std_logic;
|
||||
|
||||
signal R2_reg : std_logic_vector(3 downto 0) := (others => '0');
|
||||
|
||||
|
||||
-- These signals are based off the schematic and are formatted as Designator_PinNumber
|
||||
signal R7_12 : std_logic;
|
||||
signal P3_3 : std_logic;
|
||||
signal P2_13 : std_logic;
|
||||
signal P3_6 : std_logic;
|
||||
signal A6_6 : std_logic;
|
||||
signal A6_3 : std_logic;
|
||||
|
||||
begin
|
||||
|
||||
-- Video synchronization signals
|
||||
H1 <= Hcount(0);
|
||||
H2 <= Hcount(1);
|
||||
H4 <= Hcount(2);
|
||||
H256 <= Hcount(8);
|
||||
H256_n <= not(Hcount(8));
|
||||
|
||||
V1 <= Vcount(0);
|
||||
V2 <= Vcount(1);
|
||||
V4 <= Vcount(2);
|
||||
|
||||
-- Some glue logic, may be re-written later to be cleaner and easier to follow without referring to schematic
|
||||
R7_12 <= not(H1 and H2 and H4);
|
||||
|
||||
P3_3 <= (H256_n or R7_12);
|
||||
|
||||
P2_13 <= (HSync nor VSync);
|
||||
|
||||
P3_6 <= (HBlank or VBlank);
|
||||
|
||||
|
||||
|
||||
char_addr <= display(5 downto 0) & V4 & V2 & V1;
|
||||
|
||||
-- Background character ROMs
|
||||
R4: entity work.Char_MSB
|
||||
port map(
|
||||
clock => clk6,
|
||||
Address => char_addr,
|
||||
q => char_data(3 downto 0)
|
||||
);
|
||||
|
||||
P4: entity work.Char_LSB
|
||||
port map(
|
||||
clock => clk6,
|
||||
Address => char_addr,
|
||||
q => char_data(7 downto 4)
|
||||
);
|
||||
|
||||
|
||||
-- 74LS166 video shift register
|
||||
R3: process(clk6, P3_3, VBlank_n_s, char_data, shift_data)
|
||||
begin
|
||||
if VBlank_n_s = '0' then -- Connected Clear input
|
||||
shift_data <= (others => '0');
|
||||
elsif rising_edge(clk6) then
|
||||
if P3_3 = '0' then -- Parallel load
|
||||
shift_data <= char_data(7 downto 0);
|
||||
else
|
||||
shift_data <= shift_data(6 downto 0) & '0';
|
||||
end if;
|
||||
end if;
|
||||
QH <= shift_data(7);
|
||||
end process;
|
||||
|
||||
|
||||
-- 9316 counter at R2
|
||||
-- CEP and CET tied to ground, counter is used only as a synchronous latch
|
||||
R2: process(clk6, R7_12, display, H256, P2_13, P3_6)
|
||||
begin
|
||||
if rising_edge(clk6) then
|
||||
if R7_12 = '0' then
|
||||
R2_reg <= (H256 & display(7) & P3_6 & P2_13);
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
H256_s <= R2_reg(3);
|
||||
CompBlank_s <= R2_reg(1);
|
||||
CompSync_n_s <= R2_reg(0);
|
||||
A6_6 <= (R2_reg(2) and QH);
|
||||
A6_3 <= ((not R2_reg(2)) and QH);
|
||||
|
||||
WhitePF_n <= (not A6_6);
|
||||
BlackPF_n <= (not A6_3);
|
||||
|
||||
end rtl;
|
||||
337
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/pll.v
Normal file
337
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/pll.v
Normal file
@@ -0,0 +1,337 @@
|
||||
// megafunction wizard: %ALTPLL%
|
||||
// GENERATION: STANDARD
|
||||
// VERSION: WM1.0
|
||||
// MODULE: altpll
|
||||
|
||||
// ============================================================
|
||||
// File Name: pll.v
|
||||
// Megafunction Name(s):
|
||||
// altpll
|
||||
//
|
||||
// Simulation Library Files(s):
|
||||
// altera_mf
|
||||
// ============================================================
|
||||
// ************************************************************
|
||||
// THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
|
||||
//
|
||||
// 13.1.4 Build 182 03/12/2014 SJ Web Edition
|
||||
// ************************************************************
|
||||
|
||||
|
||||
//Copyright (C) 1991-2014 Altera Corporation
|
||||
//Your use of Altera Corporation's design tools, logic functions
|
||||
//and other software and tools, and its AMPP partner logic
|
||||
//functions, and any output files from any of the foregoing
|
||||
//(including device programming or simulation files), and any
|
||||
//associated documentation or information are expressly subject
|
||||
//to the terms and conditions of the Altera Program License
|
||||
//Subscription Agreement, Altera MegaCore Function License
|
||||
//Agreement, or other applicable license agreement, including,
|
||||
//without limitation, that your use is for the sole purpose of
|
||||
//programming logic devices manufactured by Altera and sold by
|
||||
//Altera or its authorized distributors. Please refer to the
|
||||
//applicable agreement for further details.
|
||||
|
||||
|
||||
// synopsys translate_off
|
||||
`timescale 1 ps / 1 ps
|
||||
// synopsys translate_on
|
||||
module pll (
|
||||
inclk0,
|
||||
c0,
|
||||
c1,
|
||||
locked);
|
||||
|
||||
input inclk0;
|
||||
output c0;
|
||||
output c1;
|
||||
output locked;
|
||||
|
||||
wire [4:0] sub_wire0;
|
||||
wire sub_wire2;
|
||||
wire [0:0] sub_wire6 = 1'h0;
|
||||
wire [0:0] sub_wire3 = sub_wire0[0:0];
|
||||
wire [1:1] sub_wire1 = sub_wire0[1:1];
|
||||
wire c1 = sub_wire1;
|
||||
wire locked = sub_wire2;
|
||||
wire c0 = sub_wire3;
|
||||
wire sub_wire4 = inclk0;
|
||||
wire [1:0] sub_wire5 = {sub_wire6, sub_wire4};
|
||||
|
||||
altpll altpll_component (
|
||||
.inclk (sub_wire5),
|
||||
.clk (sub_wire0),
|
||||
.locked (sub_wire2),
|
||||
.activeclock (),
|
||||
.areset (1'b0),
|
||||
.clkbad (),
|
||||
.clkena ({6{1'b1}}),
|
||||
.clkloss (),
|
||||
.clkswitch (1'b0),
|
||||
.configupdate (1'b0),
|
||||
.enable0 (),
|
||||
.enable1 (),
|
||||
.extclk (),
|
||||
.extclkena ({4{1'b1}}),
|
||||
.fbin (1'b1),
|
||||
.fbmimicbidir (),
|
||||
.fbout (),
|
||||
.fref (),
|
||||
.icdrclk (),
|
||||
.pfdena (1'b1),
|
||||
.phasecounterselect ({4{1'b1}}),
|
||||
.phasedone (),
|
||||
.phasestep (1'b1),
|
||||
.phaseupdown (1'b1),
|
||||
.pllena (1'b1),
|
||||
.scanaclr (1'b0),
|
||||
.scanclk (1'b0),
|
||||
.scanclkena (1'b1),
|
||||
.scandata (1'b0),
|
||||
.scandataout (),
|
||||
.scandone (),
|
||||
.scanread (1'b0),
|
||||
.scanwrite (1'b0),
|
||||
.sclkout0 (),
|
||||
.sclkout1 (),
|
||||
.vcooverrange (),
|
||||
.vcounderrange ());
|
||||
defparam
|
||||
altpll_component.bandwidth_type = "AUTO",
|
||||
altpll_component.clk0_divide_by = 125,
|
||||
altpll_component.clk0_duty_cycle = 50,
|
||||
altpll_component.clk0_multiply_by = 224,
|
||||
altpll_component.clk0_phase_shift = "0",
|
||||
altpll_component.clk1_divide_by = 125,
|
||||
altpll_component.clk1_duty_cycle = 50,
|
||||
altpll_component.clk1_multiply_by = 56,
|
||||
altpll_component.clk1_phase_shift = "0",
|
||||
altpll_component.compensate_clock = "CLK0",
|
||||
altpll_component.inclk0_input_frequency = 37037,
|
||||
altpll_component.intended_device_family = "Cyclone III",
|
||||
altpll_component.lpm_hint = "CBX_MODULE_PREFIX=pll",
|
||||
altpll_component.lpm_type = "altpll",
|
||||
altpll_component.operation_mode = "NORMAL",
|
||||
altpll_component.pll_type = "AUTO",
|
||||
altpll_component.port_activeclock = "PORT_UNUSED",
|
||||
altpll_component.port_areset = "PORT_UNUSED",
|
||||
altpll_component.port_clkbad0 = "PORT_UNUSED",
|
||||
altpll_component.port_clkbad1 = "PORT_UNUSED",
|
||||
altpll_component.port_clkloss = "PORT_UNUSED",
|
||||
altpll_component.port_clkswitch = "PORT_UNUSED",
|
||||
altpll_component.port_configupdate = "PORT_UNUSED",
|
||||
altpll_component.port_fbin = "PORT_UNUSED",
|
||||
altpll_component.port_inclk0 = "PORT_USED",
|
||||
altpll_component.port_inclk1 = "PORT_UNUSED",
|
||||
altpll_component.port_locked = "PORT_USED",
|
||||
altpll_component.port_pfdena = "PORT_UNUSED",
|
||||
altpll_component.port_phasecounterselect = "PORT_UNUSED",
|
||||
altpll_component.port_phasedone = "PORT_UNUSED",
|
||||
altpll_component.port_phasestep = "PORT_UNUSED",
|
||||
altpll_component.port_phaseupdown = "PORT_UNUSED",
|
||||
altpll_component.port_pllena = "PORT_UNUSED",
|
||||
altpll_component.port_scanaclr = "PORT_UNUSED",
|
||||
altpll_component.port_scanclk = "PORT_UNUSED",
|
||||
altpll_component.port_scanclkena = "PORT_UNUSED",
|
||||
altpll_component.port_scandata = "PORT_UNUSED",
|
||||
altpll_component.port_scandataout = "PORT_UNUSED",
|
||||
altpll_component.port_scandone = "PORT_UNUSED",
|
||||
altpll_component.port_scanread = "PORT_UNUSED",
|
||||
altpll_component.port_scanwrite = "PORT_UNUSED",
|
||||
altpll_component.port_clk0 = "PORT_USED",
|
||||
altpll_component.port_clk1 = "PORT_USED",
|
||||
altpll_component.port_clk2 = "PORT_UNUSED",
|
||||
altpll_component.port_clk3 = "PORT_UNUSED",
|
||||
altpll_component.port_clk4 = "PORT_UNUSED",
|
||||
altpll_component.port_clk5 = "PORT_UNUSED",
|
||||
altpll_component.port_clkena0 = "PORT_UNUSED",
|
||||
altpll_component.port_clkena1 = "PORT_UNUSED",
|
||||
altpll_component.port_clkena2 = "PORT_UNUSED",
|
||||
altpll_component.port_clkena3 = "PORT_UNUSED",
|
||||
altpll_component.port_clkena4 = "PORT_UNUSED",
|
||||
altpll_component.port_clkena5 = "PORT_UNUSED",
|
||||
altpll_component.port_extclk0 = "PORT_UNUSED",
|
||||
altpll_component.port_extclk1 = "PORT_UNUSED",
|
||||
altpll_component.port_extclk2 = "PORT_UNUSED",
|
||||
altpll_component.port_extclk3 = "PORT_UNUSED",
|
||||
altpll_component.self_reset_on_loss_lock = "OFF",
|
||||
altpll_component.width_clock = 5;
|
||||
|
||||
|
||||
endmodule
|
||||
|
||||
// ============================================================
|
||||
// CNX file retrieval info
|
||||
// ============================================================
|
||||
// Retrieval info: PRIVATE: ACTIVECLK_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: BANDWIDTH STRING "1.000"
|
||||
// Retrieval info: PRIVATE: BANDWIDTH_FEATURE_ENABLED STRING "1"
|
||||
// Retrieval info: PRIVATE: BANDWIDTH_FREQ_UNIT STRING "MHz"
|
||||
// Retrieval info: PRIVATE: BANDWIDTH_PRESET STRING "Low"
|
||||
// Retrieval info: PRIVATE: BANDWIDTH_USE_AUTO STRING "1"
|
||||
// Retrieval info: PRIVATE: BANDWIDTH_USE_PRESET STRING "0"
|
||||
// Retrieval info: PRIVATE: CLKBAD_SWITCHOVER_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: CLKLOSS_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: CLKSWITCH_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: CNX_NO_COMPENSATE_RADIO STRING "0"
|
||||
// Retrieval info: PRIVATE: CREATE_CLKBAD_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: CREATE_INCLK1_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: CUR_DEDICATED_CLK STRING "c0"
|
||||
// Retrieval info: PRIVATE: CUR_FBIN_CLK STRING "c0"
|
||||
// Retrieval info: PRIVATE: DEVICE_SPEED_GRADE STRING "8"
|
||||
// Retrieval info: PRIVATE: DIV_FACTOR0 NUMERIC "125"
|
||||
// Retrieval info: PRIVATE: DIV_FACTOR1 NUMERIC "125"
|
||||
// Retrieval info: PRIVATE: DUTY_CYCLE0 STRING "50.00000000"
|
||||
// Retrieval info: PRIVATE: DUTY_CYCLE1 STRING "50.00000000"
|
||||
// Retrieval info: PRIVATE: EFF_OUTPUT_FREQ_VALUE0 STRING "48.383999"
|
||||
// Retrieval info: PRIVATE: EFF_OUTPUT_FREQ_VALUE1 STRING "12.096000"
|
||||
// Retrieval info: PRIVATE: EXPLICIT_SWITCHOVER_COUNTER STRING "0"
|
||||
// Retrieval info: PRIVATE: EXT_FEEDBACK_RADIO STRING "0"
|
||||
// Retrieval info: PRIVATE: GLOCKED_COUNTER_EDIT_CHANGED STRING "1"
|
||||
// Retrieval info: PRIVATE: GLOCKED_FEATURE_ENABLED STRING "0"
|
||||
// Retrieval info: PRIVATE: GLOCKED_MODE_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: GLOCK_COUNTER_EDIT NUMERIC "1048575"
|
||||
// Retrieval info: PRIVATE: HAS_MANUAL_SWITCHOVER STRING "1"
|
||||
// Retrieval info: PRIVATE: INCLK0_FREQ_EDIT STRING "27.000"
|
||||
// Retrieval info: PRIVATE: INCLK0_FREQ_UNIT_COMBO STRING "MHz"
|
||||
// Retrieval info: PRIVATE: INCLK1_FREQ_EDIT STRING "100.000"
|
||||
// Retrieval info: PRIVATE: INCLK1_FREQ_EDIT_CHANGED STRING "1"
|
||||
// Retrieval info: PRIVATE: INCLK1_FREQ_UNIT_CHANGED STRING "1"
|
||||
// Retrieval info: PRIVATE: INCLK1_FREQ_UNIT_COMBO STRING "MHz"
|
||||
// Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone III"
|
||||
// Retrieval info: PRIVATE: INT_FEEDBACK__MODE_RADIO STRING "1"
|
||||
// Retrieval info: PRIVATE: LOCKED_OUTPUT_CHECK STRING "1"
|
||||
// Retrieval info: PRIVATE: LONG_SCAN_RADIO STRING "1"
|
||||
// Retrieval info: PRIVATE: LVDS_MODE_DATA_RATE STRING "Not Available"
|
||||
// Retrieval info: PRIVATE: LVDS_MODE_DATA_RATE_DIRTY NUMERIC "0"
|
||||
// Retrieval info: PRIVATE: LVDS_PHASE_SHIFT_UNIT0 STRING "deg"
|
||||
// Retrieval info: PRIVATE: LVDS_PHASE_SHIFT_UNIT1 STRING "ps"
|
||||
// Retrieval info: PRIVATE: MIG_DEVICE_SPEED_GRADE STRING "Any"
|
||||
// Retrieval info: PRIVATE: MIRROR_CLK0 STRING "0"
|
||||
// Retrieval info: PRIVATE: MIRROR_CLK1 STRING "0"
|
||||
// Retrieval info: PRIVATE: MULT_FACTOR0 NUMERIC "224"
|
||||
// Retrieval info: PRIVATE: MULT_FACTOR1 NUMERIC "56"
|
||||
// Retrieval info: PRIVATE: NORMAL_MODE_RADIO STRING "1"
|
||||
// Retrieval info: PRIVATE: OUTPUT_FREQ0 STRING "48.38400000"
|
||||
// Retrieval info: PRIVATE: OUTPUT_FREQ1 STRING "12.09600000"
|
||||
// Retrieval info: PRIVATE: OUTPUT_FREQ_MODE0 STRING "0"
|
||||
// Retrieval info: PRIVATE: OUTPUT_FREQ_MODE1 STRING "0"
|
||||
// Retrieval info: PRIVATE: OUTPUT_FREQ_UNIT0 STRING "MHz"
|
||||
// Retrieval info: PRIVATE: OUTPUT_FREQ_UNIT1 STRING "MHz"
|
||||
// Retrieval info: PRIVATE: PHASE_RECONFIG_FEATURE_ENABLED STRING "1"
|
||||
// Retrieval info: PRIVATE: PHASE_RECONFIG_INPUTS_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: PHASE_SHIFT0 STRING "0.00000000"
|
||||
// Retrieval info: PRIVATE: PHASE_SHIFT1 STRING "0.00000000"
|
||||
// Retrieval info: PRIVATE: PHASE_SHIFT_STEP_ENABLED_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: PHASE_SHIFT_UNIT0 STRING "deg"
|
||||
// Retrieval info: PRIVATE: PHASE_SHIFT_UNIT1 STRING "deg"
|
||||
// Retrieval info: PRIVATE: PLL_ADVANCED_PARAM_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: PLL_ARESET_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: PLL_AUTOPLL_CHECK NUMERIC "1"
|
||||
// Retrieval info: PRIVATE: PLL_ENHPLL_CHECK NUMERIC "0"
|
||||
// Retrieval info: PRIVATE: PLL_FASTPLL_CHECK NUMERIC "0"
|
||||
// Retrieval info: PRIVATE: PLL_FBMIMIC_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: PLL_LVDS_PLL_CHECK NUMERIC "0"
|
||||
// Retrieval info: PRIVATE: PLL_PFDENA_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: PLL_TARGET_HARCOPY_CHECK NUMERIC "0"
|
||||
// Retrieval info: PRIVATE: PRIMARY_CLK_COMBO STRING "inclk0"
|
||||
// Retrieval info: PRIVATE: RECONFIG_FILE STRING "pll.mif"
|
||||
// Retrieval info: PRIVATE: SACN_INPUTS_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: SCAN_FEATURE_ENABLED STRING "1"
|
||||
// Retrieval info: PRIVATE: SELF_RESET_LOCK_LOSS STRING "0"
|
||||
// Retrieval info: PRIVATE: SHORT_SCAN_RADIO STRING "0"
|
||||
// Retrieval info: PRIVATE: SPREAD_FEATURE_ENABLED STRING "0"
|
||||
// Retrieval info: PRIVATE: SPREAD_FREQ STRING "50.000"
|
||||
// Retrieval info: PRIVATE: SPREAD_FREQ_UNIT STRING "KHz"
|
||||
// Retrieval info: PRIVATE: SPREAD_PERCENT STRING "0.500"
|
||||
// Retrieval info: PRIVATE: SPREAD_USE STRING "0"
|
||||
// Retrieval info: PRIVATE: SRC_SYNCH_COMP_RADIO STRING "0"
|
||||
// Retrieval info: PRIVATE: STICKY_CLK0 STRING "1"
|
||||
// Retrieval info: PRIVATE: STICKY_CLK1 STRING "1"
|
||||
// Retrieval info: PRIVATE: SWITCHOVER_COUNT_EDIT NUMERIC "1"
|
||||
// Retrieval info: PRIVATE: SWITCHOVER_FEATURE_ENABLED STRING "1"
|
||||
// Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
|
||||
// Retrieval info: PRIVATE: USE_CLK0 STRING "1"
|
||||
// Retrieval info: PRIVATE: USE_CLK1 STRING "1"
|
||||
// Retrieval info: PRIVATE: USE_CLKENA0 STRING "0"
|
||||
// Retrieval info: PRIVATE: USE_CLKENA1 STRING "0"
|
||||
// Retrieval info: PRIVATE: USE_MIL_SPEED_GRADE NUMERIC "0"
|
||||
// Retrieval info: PRIVATE: ZERO_DELAY_RADIO STRING "0"
|
||||
// Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
|
||||
// Retrieval info: CONSTANT: BANDWIDTH_TYPE STRING "AUTO"
|
||||
// Retrieval info: CONSTANT: CLK0_DIVIDE_BY NUMERIC "125"
|
||||
// Retrieval info: CONSTANT: CLK0_DUTY_CYCLE NUMERIC "50"
|
||||
// Retrieval info: CONSTANT: CLK0_MULTIPLY_BY NUMERIC "224"
|
||||
// Retrieval info: CONSTANT: CLK0_PHASE_SHIFT STRING "0"
|
||||
// Retrieval info: CONSTANT: CLK1_DIVIDE_BY NUMERIC "125"
|
||||
// Retrieval info: CONSTANT: CLK1_DUTY_CYCLE NUMERIC "50"
|
||||
// Retrieval info: CONSTANT: CLK1_MULTIPLY_BY NUMERIC "56"
|
||||
// Retrieval info: CONSTANT: CLK1_PHASE_SHIFT STRING "0"
|
||||
// Retrieval info: CONSTANT: COMPENSATE_CLOCK STRING "CLK0"
|
||||
// Retrieval info: CONSTANT: INCLK0_INPUT_FREQUENCY NUMERIC "37037"
|
||||
// Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "Cyclone III"
|
||||
// Retrieval info: CONSTANT: LPM_TYPE STRING "altpll"
|
||||
// Retrieval info: CONSTANT: OPERATION_MODE STRING "NORMAL"
|
||||
// Retrieval info: CONSTANT: PLL_TYPE STRING "AUTO"
|
||||
// Retrieval info: CONSTANT: PORT_ACTIVECLOCK STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_ARESET STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_CLKBAD0 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_CLKBAD1 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_CLKLOSS STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_CLKSWITCH STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_CONFIGUPDATE STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_FBIN STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_INCLK0 STRING "PORT_USED"
|
||||
// Retrieval info: CONSTANT: PORT_INCLK1 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_LOCKED STRING "PORT_USED"
|
||||
// Retrieval info: CONSTANT: PORT_PFDENA STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_PHASECOUNTERSELECT STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_PHASEDONE STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_PHASESTEP STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_PHASEUPDOWN STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_PLLENA STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANACLR STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANCLK STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANCLKENA STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANDATA STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANDATAOUT STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANDONE STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANREAD STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANWRITE STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clk0 STRING "PORT_USED"
|
||||
// Retrieval info: CONSTANT: PORT_clk1 STRING "PORT_USED"
|
||||
// Retrieval info: CONSTANT: PORT_clk2 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clk3 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clk4 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clk5 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clkena0 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clkena1 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clkena2 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clkena3 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clkena4 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clkena5 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_extclk0 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_extclk1 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_extclk2 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_extclk3 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: SELF_RESET_ON_LOSS_LOCK STRING "OFF"
|
||||
// Retrieval info: CONSTANT: WIDTH_CLOCK NUMERIC "5"
|
||||
// Retrieval info: USED_PORT: @clk 0 0 5 0 OUTPUT_CLK_EXT VCC "@clk[4..0]"
|
||||
// Retrieval info: USED_PORT: c0 0 0 0 0 OUTPUT_CLK_EXT VCC "c0"
|
||||
// Retrieval info: USED_PORT: c1 0 0 0 0 OUTPUT_CLK_EXT VCC "c1"
|
||||
// Retrieval info: USED_PORT: inclk0 0 0 0 0 INPUT_CLK_EXT GND "inclk0"
|
||||
// Retrieval info: USED_PORT: locked 0 0 0 0 OUTPUT GND "locked"
|
||||
// Retrieval info: CONNECT: @inclk 0 0 1 1 GND 0 0 0 0
|
||||
// Retrieval info: CONNECT: @inclk 0 0 1 0 inclk0 0 0 0 0
|
||||
// Retrieval info: CONNECT: c0 0 0 0 0 @clk 0 0 1 0
|
||||
// Retrieval info: CONNECT: c1 0 0 0 0 @clk 0 0 1 1
|
||||
// Retrieval info: CONNECT: locked 0 0 0 0 @locked 0 0 0 0
|
||||
// Retrieval info: GEN_FILE: TYPE_NORMAL pll.v TRUE
|
||||
// Retrieval info: GEN_FILE: TYPE_NORMAL pll.ppf TRUE
|
||||
// Retrieval info: GEN_FILE: TYPE_NORMAL pll.inc FALSE
|
||||
// Retrieval info: GEN_FILE: TYPE_NORMAL pll.cmp FALSE
|
||||
// Retrieval info: GEN_FILE: TYPE_NORMAL pll.bsf FALSE
|
||||
// Retrieval info: GEN_FILE: TYPE_NORMAL pll_inst.v FALSE
|
||||
// Retrieval info: GEN_FILE: TYPE_NORMAL pll_bb.v FALSE
|
||||
// Retrieval info: LIB_FILE: altera_mf
|
||||
// Retrieval info: CBX_MODULE_PREFIX: ON
|
||||
@@ -0,0 +1,3 @@
|
||||
set_global_assignment -name IP_TOOL_NAME "RAM: 2-PORT"
|
||||
set_global_assignment -name IP_TOOL_VERSION "13.1"
|
||||
set_global_assignment -name VHDL_FILE [file join $::quartus(qip_path) "ram1k_dp.vhd"]
|
||||
224
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/ram1k_dp.vhd
Normal file
224
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/ram1k_dp.vhd
Normal file
@@ -0,0 +1,224 @@
|
||||
-- megafunction wizard: %RAM: 2-PORT%
|
||||
-- GENERATION: STANDARD
|
||||
-- VERSION: WM1.0
|
||||
-- MODULE: altsyncram
|
||||
|
||||
-- ============================================================
|
||||
-- File Name: ram1k_dp.vhd
|
||||
-- Megafunction Name(s):
|
||||
-- altsyncram
|
||||
--
|
||||
-- Simulation Library Files(s):
|
||||
-- altera_mf
|
||||
-- ============================================================
|
||||
-- ************************************************************
|
||||
-- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
|
||||
--
|
||||
-- 13.1.4 Build 182 03/12/2014 SJ Web Edition
|
||||
-- ************************************************************
|
||||
|
||||
|
||||
--Copyright (C) 1991-2014 Altera Corporation
|
||||
--Your use of Altera Corporation's design tools, logic functions
|
||||
--and other software and tools, and its AMPP partner logic
|
||||
--functions, and any output files from any of the foregoing
|
||||
--(including device programming or simulation files), and any
|
||||
--associated documentation or information are expressly subject
|
||||
--to the terms and conditions of the Altera Program License
|
||||
--Subscription Agreement, Altera MegaCore Function License
|
||||
--Agreement, or other applicable license agreement, including,
|
||||
--without limitation, that your use is for the sole purpose of
|
||||
--programming logic devices manufactured by Altera and sold by
|
||||
--Altera or its authorized distributors. Please refer to the
|
||||
--applicable agreement for further details.
|
||||
|
||||
|
||||
LIBRARY ieee;
|
||||
USE ieee.std_logic_1164.all;
|
||||
|
||||
LIBRARY altera_mf;
|
||||
USE altera_mf.altera_mf_components.all;
|
||||
|
||||
ENTITY ram1k_dp IS
|
||||
PORT
|
||||
(
|
||||
address_a : IN STD_LOGIC_VECTOR (9 DOWNTO 0);
|
||||
address_b : IN STD_LOGIC_VECTOR (9 DOWNTO 0);
|
||||
clock : IN STD_LOGIC := '1';
|
||||
data_a : IN STD_LOGIC_VECTOR (7 DOWNTO 0);
|
||||
data_b : IN STD_LOGIC_VECTOR (7 DOWNTO 0);
|
||||
wren_a : IN STD_LOGIC := '0';
|
||||
wren_b : IN STD_LOGIC := '0';
|
||||
q_a : OUT STD_LOGIC_VECTOR (7 DOWNTO 0);
|
||||
q_b : OUT STD_LOGIC_VECTOR (7 DOWNTO 0)
|
||||
);
|
||||
END ram1k_dp;
|
||||
|
||||
|
||||
ARCHITECTURE SYN OF ram1k_dp IS
|
||||
|
||||
SIGNAL sub_wire0 : STD_LOGIC_VECTOR (7 DOWNTO 0);
|
||||
SIGNAL sub_wire1 : STD_LOGIC_VECTOR (7 DOWNTO 0);
|
||||
|
||||
BEGIN
|
||||
q_a <= sub_wire0(7 DOWNTO 0);
|
||||
q_b <= sub_wire1(7 DOWNTO 0);
|
||||
|
||||
altsyncram_component : altsyncram
|
||||
GENERIC MAP (
|
||||
address_reg_b => "CLOCK0",
|
||||
clock_enable_input_a => "BYPASS",
|
||||
clock_enable_input_b => "BYPASS",
|
||||
clock_enable_output_a => "BYPASS",
|
||||
clock_enable_output_b => "BYPASS",
|
||||
indata_reg_b => "CLOCK0",
|
||||
intended_device_family => "Cyclone III",
|
||||
lpm_type => "altsyncram",
|
||||
numwords_a => 1024,
|
||||
numwords_b => 1024,
|
||||
operation_mode => "BIDIR_DUAL_PORT",
|
||||
outdata_aclr_a => "NONE",
|
||||
outdata_aclr_b => "NONE",
|
||||
outdata_reg_a => "CLOCK0",
|
||||
outdata_reg_b => "CLOCK0",
|
||||
power_up_uninitialized => "FALSE",
|
||||
read_during_write_mode_mixed_ports => "DONT_CARE",
|
||||
read_during_write_mode_port_a => "NEW_DATA_NO_NBE_READ",
|
||||
read_during_write_mode_port_b => "NEW_DATA_NO_NBE_READ",
|
||||
widthad_a => 10,
|
||||
widthad_b => 10,
|
||||
width_a => 8,
|
||||
width_b => 8,
|
||||
width_byteena_a => 1,
|
||||
width_byteena_b => 1,
|
||||
wrcontrol_wraddress_reg_b => "CLOCK0"
|
||||
)
|
||||
PORT MAP (
|
||||
clock0 => clock,
|
||||
wren_a => wren_a,
|
||||
address_b => address_b,
|
||||
data_b => data_b,
|
||||
wren_b => wren_b,
|
||||
address_a => address_a,
|
||||
data_a => data_a,
|
||||
q_a => sub_wire0,
|
||||
q_b => sub_wire1
|
||||
);
|
||||
|
||||
|
||||
|
||||
END SYN;
|
||||
|
||||
-- ============================================================
|
||||
-- CNX file retrieval info
|
||||
-- ============================================================
|
||||
-- Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: ADDRESSSTALL_B NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTEENA_ACLR_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTEENA_ACLR_B NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_ENABLE_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_ENABLE_B NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: BlankMemory NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_B NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_B NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLRdata NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLRq NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLRrdaddress NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLRrren NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLRwraddress NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLRwren NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: Clock NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: Clock_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: Clock_B NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INDATA_ACLR_B NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INDATA_REG_B NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_A"
|
||||
-- Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone III"
|
||||
-- Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
|
||||
-- Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: MEMSIZE NUMERIC "8192"
|
||||
-- Retrieval info: PRIVATE: MEM_IN_BITS NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: MIFfilename STRING "../roms/033455e1.hex"
|
||||
-- Retrieval info: PRIVATE: OPERATION_MODE NUMERIC "3"
|
||||
-- Retrieval info: PRIVATE: OUTDATA_ACLR_B NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: OUTDATA_REG_B NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_MIXED_PORTS NUMERIC "2"
|
||||
-- Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_A NUMERIC "3"
|
||||
-- Retrieval info: PRIVATE: READ_DURING_WRITE_MODE_PORT_B NUMERIC "3"
|
||||
-- Retrieval info: PRIVATE: REGdata NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: REGq NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: REGrdaddress NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: REGrren NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: REGwraddress NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: REGwren NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
|
||||
-- Retrieval info: PRIVATE: USE_DIFF_CLKEN NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: UseDPRAM NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: VarWidth NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: WIDTH_READ_A NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: WIDTH_READ_B NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: WIDTH_WRITE_A NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: WIDTH_WRITE_B NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: WRADDR_ACLR_B NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: WRADDR_REG_B NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: WRCTRL_ACLR_B NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: enable NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: rden NUMERIC "0"
|
||||
-- Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
|
||||
-- Retrieval info: CONSTANT: ADDRESS_REG_B STRING "CLOCK0"
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_B STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_B STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: INDATA_REG_B STRING "CLOCK0"
|
||||
-- Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "Cyclone III"
|
||||
-- Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
|
||||
-- Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "1024"
|
||||
-- Retrieval info: CONSTANT: NUMWORDS_B NUMERIC "1024"
|
||||
-- Retrieval info: CONSTANT: OPERATION_MODE STRING "BIDIR_DUAL_PORT"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_ACLR_A STRING "NONE"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_ACLR_B STRING "NONE"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_REG_A STRING "CLOCK0"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_REG_B STRING "CLOCK0"
|
||||
-- Retrieval info: CONSTANT: POWER_UP_UNINITIALIZED STRING "FALSE"
|
||||
-- Retrieval info: CONSTANT: READ_DURING_WRITE_MODE_MIXED_PORTS STRING "DONT_CARE"
|
||||
-- Retrieval info: CONSTANT: READ_DURING_WRITE_MODE_PORT_A STRING "NEW_DATA_NO_NBE_READ"
|
||||
-- Retrieval info: CONSTANT: READ_DURING_WRITE_MODE_PORT_B STRING "NEW_DATA_NO_NBE_READ"
|
||||
-- Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "10"
|
||||
-- Retrieval info: CONSTANT: WIDTHAD_B NUMERIC "10"
|
||||
-- Retrieval info: CONSTANT: WIDTH_A NUMERIC "8"
|
||||
-- Retrieval info: CONSTANT: WIDTH_B NUMERIC "8"
|
||||
-- Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
|
||||
-- Retrieval info: CONSTANT: WIDTH_BYTEENA_B NUMERIC "1"
|
||||
-- Retrieval info: CONSTANT: WRCONTROL_WRADDRESS_REG_B STRING "CLOCK0"
|
||||
-- Retrieval info: USED_PORT: address_a 0 0 10 0 INPUT NODEFVAL "address_a[9..0]"
|
||||
-- Retrieval info: USED_PORT: address_b 0 0 10 0 INPUT NODEFVAL "address_b[9..0]"
|
||||
-- Retrieval info: USED_PORT: clock 0 0 0 0 INPUT VCC "clock"
|
||||
-- Retrieval info: USED_PORT: data_a 0 0 8 0 INPUT NODEFVAL "data_a[7..0]"
|
||||
-- Retrieval info: USED_PORT: data_b 0 0 8 0 INPUT NODEFVAL "data_b[7..0]"
|
||||
-- Retrieval info: USED_PORT: q_a 0 0 8 0 OUTPUT NODEFVAL "q_a[7..0]"
|
||||
-- Retrieval info: USED_PORT: q_b 0 0 8 0 OUTPUT NODEFVAL "q_b[7..0]"
|
||||
-- Retrieval info: USED_PORT: wren_a 0 0 0 0 INPUT GND "wren_a"
|
||||
-- Retrieval info: USED_PORT: wren_b 0 0 0 0 INPUT GND "wren_b"
|
||||
-- Retrieval info: CONNECT: @address_a 0 0 10 0 address_a 0 0 10 0
|
||||
-- Retrieval info: CONNECT: @address_b 0 0 10 0 address_b 0 0 10 0
|
||||
-- Retrieval info: CONNECT: @clock0 0 0 0 0 clock 0 0 0 0
|
||||
-- Retrieval info: CONNECT: @data_a 0 0 8 0 data_a 0 0 8 0
|
||||
-- Retrieval info: CONNECT: @data_b 0 0 8 0 data_b 0 0 8 0
|
||||
-- Retrieval info: CONNECT: @wren_a 0 0 0 0 wren_a 0 0 0 0
|
||||
-- Retrieval info: CONNECT: @wren_b 0 0 0 0 wren_b 0 0 0 0
|
||||
-- Retrieval info: CONNECT: q_a 0 0 8 0 @q_a 0 0 8 0
|
||||
-- Retrieval info: CONNECT: q_b 0 0 8 0 @q_b 0 0 8 0
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL ram1k_dp.vhd TRUE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL ram1k_dp.inc FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL ram1k_dp.cmp FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL ram1k_dp.bsf FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL ram1k_dp_inst.vhd FALSE
|
||||
-- Retrieval info: LIB_FILE: altera_mf
|
||||
129
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/6290-01b1.hex
Normal file
129
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/6290-01b1.hex
Normal file
@@ -0,0 +1,129 @@
|
||||
:100000000620262120053FCCCCCCCCCC9344555F98
|
||||
:10001000CCCCCCCCCC95FB2223334444D94555FBE6
|
||||
:100020002222233444D9A222223444444E655FB2B2
|
||||
:1000300012222234444EA221122244444E65FB1166
|
||||
:1000400012222224544EA223222243344E6FB11195
|
||||
:1000500022222123434EA230018344334EFB11114F
|
||||
:100060001111F833444EA1000E0A34444DB1111160
|
||||
:10007000111FB2A4444EA0000E6A33333311122173
|
||||
:1000800011FB12A4444EA0000E6A33233111222129
|
||||
:100090001FB112A4444EA0000E6A22221122211187
|
||||
:1000A000FB1112A4544EA0000D9D91111221111F9D
|
||||
:1000B000B1111FB5544EA07007DCCCCCCCCCCCCC4D
|
||||
:1000C000CCCCCB55544EA0007666666666666666F6
|
||||
:1000D00065566666644EA001666666667766666605
|
||||
:1000E00066666666655EA0007666666666667766C4
|
||||
:1000F00066666666655EA0007766666665566666D5
|
||||
:1001000066666666666ED9000776666666666666C9
|
||||
:100110006666776666FB1D888888888888888888F0
|
||||
:100120008888888888B72C214C2260043FCCCCCCAE
|
||||
:10013000C9223333333223FCCCCCCC95FB3333444C
|
||||
:100140004D92233333333FB3333444D9A223333472
|
||||
:1001500044E3FCCCCCC92A233334444EA2223333AB
|
||||
:1001600044EFB333444D9A223334444EA222233316
|
||||
:1001700044EB23334444DA222334444EA222223374
|
||||
:1001800034E2223344445A121234444EA1111E2345
|
||||
:100190003331222334445A1217A4444EA1110E22A3
|
||||
:1001A0002311111134455A1107A4444EA1100E22F7
|
||||
:1001B00022111110A4455A1007A4444EA2000E9219
|
||||
:1001C0002111110FB3455A0007A4444EA0000ED9C7
|
||||
:1001D000111110FB3335FB0007A4444EA0000E7D27
|
||||
:1001E000888888A33333B10007A4444EA0000E775B
|
||||
:1001F000666666A22222110007A4444EA0000E7774
|
||||
:10020000666666A2222211000FA4444EA0000E775B
|
||||
:10021000666666A222211100FBA4444EA0000E7760
|
||||
:10022000666666D92211110FB5A4444EA0000D9741
|
||||
:100230006666666D8888888B5FB5444EA00007DCD3
|
||||
:10024000CCCCCCCCCCCCCCCCCB55444E5222722393
|
||||
:1002500060043FCCCCCCCCCC9543FCCCCCCCCCCC2F
|
||||
:10026000CC95FB2223333444D93FB222233333339A
|
||||
:1002700044D9A222223334444D8B222222333333F9
|
||||
:10028000444EA2222223344444E222222223333445
|
||||
:10029000444EA2222222344444E222222122334428
|
||||
:1002A000444EA11111FC944444E1111110FC9344FB
|
||||
:1002B000444EA11110D9A44444E1111100A1D94424
|
||||
:1002C000444EA111077DA44445E1111070D92A4480
|
||||
:1002D000444EA11F9777A44455E11100777D9A44BD
|
||||
:1002E000444EA10AE007A34455E910000077DA4420
|
||||
:1002F000444EA00DB107A33445ED900000777A4439
|
||||
:10030000444EA077100FB33444A2A00007077A44EC
|
||||
:10031000444EA00711FB333333CC110800007A445C
|
||||
:10032000444EA07710E22222222110E0A0007A445D
|
||||
:10033000445EA00010E222222211001C10007A4428
|
||||
:10034000455EA07710D92222222222211000FB54E0
|
||||
:10035000454EA000107D911111111111100FB554CF
|
||||
:10036000544EA0777077DCCCCCCCCCCCCCCB5554D5
|
||||
:10037000544E7823982460044FCCCCCCCCCCCCCC3D
|
||||
:10038000CCCCCCCCCCCCCC95FB222222222222225B
|
||||
:1003900022222222333344D9A222221221221233D2
|
||||
:1003A000333228222333444EA22222222222222325
|
||||
:1003B0003333D8B22233444EA222222222222222D6
|
||||
:1003C000233322222223445EA11111FCCCCCCCCCBD
|
||||
:1003D000C92222111FC9455EA1111FB444455555BC
|
||||
:1003E0006D911111FBFB555EA1110E34444555561C
|
||||
:1003F00066DCCCCCCCB5555EA1100E3344455566B9
|
||||
:10040000666666666666666EA1000E33344556669D
|
||||
:10041000666666666666666EA0000E33334589774B
|
||||
:10042000766666666666666EA0000E33333E3D975E
|
||||
:1004300077666667777777FBA0000E22233DCCCCEA
|
||||
:10044000CCCCCCCCCCCCCCA5A0000E22222222221B
|
||||
:1004500022222223334444D9A0000E222222222227
|
||||
:10046000222222223344455EA0000D922222222223
|
||||
:10047000222222222344555EA00007D91111111116
|
||||
:10048000111111222245555EA000077DCCCCCCCCA9
|
||||
:10049000CCCCCCCCCC55555E9E24BE2560043FCC44
|
||||
:1004A000CCCCCCCCCCCCCCCCCCCCCCCCCC95FB223E
|
||||
:1004B00022222222233222222223333444D9A2228E
|
||||
:1004C000222122222223222222223334444EA2221B
|
||||
:1004D000211222222222232222222334445EA2221B
|
||||
:1004E000222222222222222211222234455EA1111E
|
||||
:1004F0001F8888888888888888888844555EA111E4
|
||||
:1005000007665555555D9111FB555555555EA11022
|
||||
:10051000077666666666D91FB5555566666EA10094
|
||||
:100520000777666666666EFB44555666666ED9004A
|
||||
:100530000777766777666EB344456666666E1D908C
|
||||
:10054000077777777776FB3334466666666E3FCCFF
|
||||
:10055000CCCCC007777FB33333488888888BFB22A5
|
||||
:100560002222211077FB22222223333444D9A222D3
|
||||
:10057000222211100FA2222222223334444EA22220
|
||||
:1005800022111100FBA2222222222334445EA22245
|
||||
:100590002111100FB5D9222222222234455EA11149
|
||||
:1005A000111100FB555D911111111124555EA1111E
|
||||
:1005B00011DCCCCCCCCCCCCCCCCCCCB5555EC425D1
|
||||
:1005C000E42660043FCCCCCC953FCCCCCCCCCCCC7E
|
||||
:1005D000CCCCCC95FB333444D9FB222222222223DB
|
||||
:1005E000333444D9A22334444DA22222222222228F
|
||||
:1005F0003334444EA222334445A222222222222214
|
||||
:100600002334444EA222234445A111111F88888817
|
||||
:100610009334444EA111E34445A11111FB555555A6
|
||||
:10062000D934444EA110E34445A1111FB555556678
|
||||
:100630006D94444EA100E34445A1100E55555566F6
|
||||
:1006400066A4444EA000E33445A100075555566604
|
||||
:1006500066A4444EA000E33345A0000766665A77BF
|
||||
:1006600077A4444EA000E33334A000077666FB076E
|
||||
:1006700077A4444EA000E33333D90077776FB100FD
|
||||
:1006800077A4444EA000E333333DCCCCCCCB110057
|
||||
:1006900007A4444EA000E22222222222222111009D
|
||||
:1006A00000A4444EA000E2222222222222111100A4
|
||||
:1006B00000A4444EA000D92222222222211111009E
|
||||
:1006C0000FB5444EA0007D911111111111111100AF
|
||||
:1006D000FB55444EA00077DCCCCCCCCCCCCCCCCCE5
|
||||
:1006E000B555444EEA260A2860043FCCCCCCCCCC8D
|
||||
:1006F000CCCCCCCCCCCCCCCCCC95FB4445555666A4
|
||||
:10070000666666666666666666D9A444455566662C
|
||||
:100710006666666666666666666EA4444555666687
|
||||
:100720006666666666666666666EA344445F88882B
|
||||
:100730008888888888888897777EA333444D9FB3BC
|
||||
:1007400033333333333D9FB0777ED9333444DB22A8
|
||||
:10075000222223333333DB10077E1D93334442229E
|
||||
:100760002222223332222110007E11D93334122268
|
||||
:100770002222222222221110000E111D9333111168
|
||||
:100780001F88888922211110000E0001E113133304
|
||||
:100790003A11111D9211111000FB000FB1133333E8
|
||||
:1007A0003D933333D888888888B700FB11103333E2
|
||||
:1007B00033DCCCCCCCCCCCCCCC950FB111072222E5
|
||||
:1007C000222222222222333444D9FB111007F9229B
|
||||
:1007D0002222222222222334444EA111100FBD9244
|
||||
:1007E0002222222222222234444EA11000FB55D97B
|
||||
:1007F0001111111111112224444EA100007CCCCC06
|
||||
:00000001FF
|
||||
129
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/6291-01c1.hex
Normal file
129
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/6291-01c1.hex
Normal file
@@ -0,0 +1,129 @@
|
||||
:10000000CCCCCCCCCCCCCCB4444E10283029600421
|
||||
:100010003FCCCCCCCCC953FCCCCCCCCCCCCCCC9530
|
||||
:10002000FB233334444D9FB222222223334444D94C
|
||||
:10003000A22233344444EB22222222223344445E5F
|
||||
:10004000A22223344444E222222222222344455E77
|
||||
:10005000A22222344444E222222221111244555E7B
|
||||
:10006000A11110A44444E111111F88888845555EF0
|
||||
:10007000A11107A44444E111100A11FB4455556E27
|
||||
:10008000A11007A44444E111000D9FB44455566EDD
|
||||
:10009000A10007A34444E1100077EB344455666E99
|
||||
:1000A000A00007A33444E9100777E333445666FB06
|
||||
:1000B000A00007A33344ED900777E33334666FB7AE
|
||||
:1000C000A00007A33333D8B00077E333333CCC959B
|
||||
:1000D000A00007A2222222100007E233334444D9B1
|
||||
:1000E000A00007A2222221100000E2233344444E44
|
||||
:1000F000A00007A2222211100000E9222344444E4E
|
||||
:10010000A00007A222211110000FBD922244444EEC
|
||||
:10011000A00007D91111111000FB55D92245444EFA
|
||||
:10012000A000077DCCCCCCCCCCCCCCCCCC55444E98
|
||||
:100130003629562A60043FCCCCCCCCCCCCCCCCCC11
|
||||
:1001400093FCCCCCCC95FB222222222223333444B4
|
||||
:10015000D8B2333444D9A222222222222223344587
|
||||
:100160005A222334444EA222222222222222345511
|
||||
:100170005A222234444EA11111F888888888855566
|
||||
:100180005A1111F4444EA1111FB4444555566666E8
|
||||
:100190006A1110E4444EA111FB444455566666664C
|
||||
:1001A0006A1100E4444EA110E34444556666666655
|
||||
:1001B000FA1000E4444EA110E34444566666777F8B
|
||||
:1001C000BA0000E4444EA000E344445FCCCCCCCC65
|
||||
:1001D0009A0000E4444EA000E33444FB233333444C
|
||||
:1001E000DA0000E4444EA000E33344E22233333427
|
||||
:1001F0004A0000E4444EA000E33334E222233333C8
|
||||
:100200004A0000E4444EA000E2222221111F3222C3
|
||||
:10021000210000E4444EA000E2222211110E22220D
|
||||
:10022000110000E4444EA000D9222111100E9221A9
|
||||
:10023000110000E4444EA0007D91111100FBD91182
|
||||
:1002400011000FB5444EA00077DCCCCCCCCCCCCC8C
|
||||
:10025000CCCCCB55444E5C2A7C2B60043FCCCCCC20
|
||||
:10026000CCCCCC9543FCCCCCCCCCCC95FB444555EC
|
||||
:10027000666666D94FB22223333444D9A444455626
|
||||
:100280006666666E4A2222223334444EA344456693
|
||||
:100290006666666E4A2222222334444EA3344F8877
|
||||
:1002A0008897777E4A11111FC933444EA3334A33CE
|
||||
:1002B00077E0777E4A11110D9D93444EA3333DCCD8
|
||||
:1002C000CCC0077DCC911007D9A4444EA33333335F
|
||||
:1002D0003333002334D910077DA4444EA2222223B5
|
||||
:1002E00023220122344D900777A4444ED9222222A2
|
||||
:1002F000222202223444D90077A4444E3E888888C2
|
||||
:100300008881077F93445A0077A4444EFB33333DE2
|
||||
:1003100093E0077EE3345A0007A4444EA22233330D
|
||||
:10032000D8B0077EB3334A0007A4444EA22222224B
|
||||
:100330002210077E3333310007A4444EA22222222A
|
||||
:100340002110077E2222211007A4444EA1111892E9
|
||||
:100350001110077E222211100FB5444EA111E1D9D0
|
||||
:10036000111007FC91111110FB55444EA1107CCCCB
|
||||
:10037000CCCCCCCCCCCCCCCCB555444E822BA22C06
|
||||
:1003800060043FCCCCCCCCCCCCCCCCCC953FCCCC32
|
||||
:10039000CC95FB222222222233333444D9FB33343E
|
||||
:1003A00044D9A22222222222233334444EB22334BF
|
||||
:1003B000444EA22222222222223334444E222234CC
|
||||
:1003C000444EA11108888888889334444E22222400
|
||||
:1003D000444EA1100665555555D934444E2211E4BA
|
||||
:1003E000444EA11007665555555D94444E2110E4C6
|
||||
:1003F000444EA100077666666666E3444E1100E44B
|
||||
:10040000444ED900077766666666E3444E1000E402
|
||||
:10041000444E1D88888889777777E3444E0000E44E
|
||||
:10042000444E3FB333344D977777E3344E0000E4C6
|
||||
:10043000444EFB22223344E00777E3334E0000E4CE
|
||||
:10044000444EA222222334E00077E3333D0000E44F
|
||||
:10045000444EA222223333210007E222210000E48D
|
||||
:10046000444EA1110A2222110000E222110000E4F0
|
||||
:10047000444EA1100A222111000FC92111000FB50D
|
||||
:10048000444EA1000D91111100FB4D911100FB553F
|
||||
:10049000444EA00007DCCCCCCCCCCCCCCCCCB555DD
|
||||
:1004A000444EA82CC82D6004333FCCCCCCCCC953CF
|
||||
:1004B000FCCCCCCCCCCCCC9533FB333334445D9FDB
|
||||
:1004C000B2222222233344D93FB22233344455DAB4
|
||||
:1004D000222222222233445EFB2222233445555A13
|
||||
:1004E000222222222223455EA111111F4445555A82
|
||||
:1004F000111118888884555EA11111FB444555FBE4
|
||||
:100500001110EFB55556666EA1111FB444455FB189
|
||||
:100510001100EB555566666EA1110E344445FB1172
|
||||
:10052000110FB455556666FBA1100E34444FB1113E
|
||||
:1005300010FB44555F8888A5A1000E33444E11116D
|
||||
:100540000FB44445FB3344D9A0000E33344E111090
|
||||
:100550007A34445FB333444EA0000E33334E11005F
|
||||
:100560007A3344FB2333444EA0000E333332100061
|
||||
:100570007A3334B22233444EA0000E2222211000DE
|
||||
:100580007A2222222223444EA0000E2222111000A1
|
||||
:10059000FA22221111F3444EA0000D922111000FF6
|
||||
:1005A000BD9221111FBA444EA00007D9111100FBC2
|
||||
:1005B00055D91111FBFB544EA000077DCCCCCCCCFF
|
||||
:1005C000CCCCCCCCCCB5544E0093E22DEC2DF62DFA
|
||||
:1005D000002E0A2E142E1E2E282E322E3C2E462E93
|
||||
:1005E000502E5A2E5E2E622E662E6A2E5A2E6E2E99
|
||||
:1005F000722EA22E6A2E5A2E762E7A2ED22E6A2E87
|
||||
:100600005A2E7A2E7E2E822E6A2E862E8A2E8E2E9E
|
||||
:10061000922E6A2E962E9A2E9E2EA22E6A2E5A2E3A
|
||||
:10062000A62EAA2EAE2E6A2E5A2EB22EB62EBA2E76
|
||||
:100630006A2E962EBE2EC22EA22E6A2E962E9A2E8E
|
||||
:10064000C62EA22E6A2E962E9A2EC62EA22E6A2E66
|
||||
:10065000962ECA2ECE2ED22E6A2E6F6E6D6C7C7B9D
|
||||
:100660007A79838393A360606162273747578A9AB8
|
||||
:10067000AABA5565758598999A9BA4B4C4D48999EA
|
||||
:10068000A9B9545464745B6B7B8BBCBCCCDCB3B336
|
||||
:10069000C3D3536373836F6E6D6DBDBDCDDD959513
|
||||
:1006A000A5B5A0A0A1A28393A3B3BFBEBDBC535365
|
||||
:1006B0006373BFBEBDBC85868788B0B1B2B3B5B524
|
||||
:1006C000B6B77576777855556575A9AAABACB2B251
|
||||
:1006D000C2D260616263D205EA06FB05EA067205D2
|
||||
:1006E000EA064E06EA06C904EA060706EA064F05C8
|
||||
:1006F000EA06EA06EA06EA06EA06EA06EA06EA067A
|
||||
:10070000EA06EA06EA0600FEFCFAF8F7F6F5F5F561
|
||||
:10071000F6F7F8FAFCFE0002040608090A0B0B0BB8
|
||||
:100720000A09080604020B0B0A090806040200FE67
|
||||
:10073000FCFAF8F7F6F5F5F5F6F7F8FAFCFE000224
|
||||
:10074000040608090A0B0000FFFFEFFFDFFFCFFFE1
|
||||
:10075000BEFFAEFF9EFF9EFF9DEF9DEF9DEF9DEFC5
|
||||
:100760009CEF9CEF9CEF9CEF9BDE9BDE9BDE9BDE79
|
||||
:100770009ADE9ADE9ADE9ADE99CE99CE99CE99CEFD
|
||||
:1007800099CE99CE99CE71117111611162115311E7
|
||||
:100790003411252105210521F421F331F231E13114
|
||||
:1007A000E041E041D041DF32DF32CF22CF12CF0231
|
||||
:1007B000BE03BE03BEF3AEF3AEF3ADF39DF29DE216
|
||||
:1007C0009DE29CE19CE000000000000000000000B1
|
||||
:1007D0000000000000000000000000000000000019
|
||||
:1007E0000000000000000000000000000000000009
|
||||
:1007F00000000000000000000000000000000000F9
|
||||
:00000001FF
|
||||
@@ -0,0 +1,33 @@
|
||||
:1000000000000000000000000003060C0C0F0C0CA8
|
||||
:10001000000F0C0C0F0C0C0F0003060C0C0C06034D
|
||||
:10002000000F0C0C0C0C0C0F000F0C0C0F0C0C0F19
|
||||
:10003000000F0C0C0F0C0C0C0003060C0C0C060330
|
||||
:10004000000C0C0C0F0C0C0C000F03030303030F2C
|
||||
:100050000000000000000C07000C0C0D0F0F0D0C31
|
||||
:10006000000C0C0C0C0C0C0F000C0E0F0F0D0C0CDC
|
||||
:10007000000C0E0F0F0D0C0C00070C0C0C0C0C07D9
|
||||
:10008000000F0C0C0C0F0C0C00070C0C0C0D0C07CB
|
||||
:10009000000F0C0C0C0F0D0C00070C0C07000C07CC
|
||||
:1000A000000F030303030303000C0C0C0C0C0C07E0
|
||||
:1000B000000C0C0C0E070301000C0C0D0F0F0E0CA6
|
||||
:1000C000000C0E0703070E0C000C0C0C07030303B7
|
||||
:1000D000000F000103070E0F0000000000000000E9
|
||||
:1000E0000000000000000000000000000000000010
|
||||
:1000F0000000000000000000000000000000000000
|
||||
:1001000000000000000000000000000000000000EF
|
||||
:1001100000000000000000000000000000000000DF
|
||||
:1001200000000000000000000000000000000000CF
|
||||
:1001300000000000000000000000000000000000BF
|
||||
:100140000000000000060600000000000006060097
|
||||
:10015000000606000006060000060600000000007B
|
||||
:100160000006060000000000000000000000000083
|
||||
:10017000000000000000000000000000000000007F
|
||||
:100180000003040C0C0C0603000307030303030F16
|
||||
:1001900000070C0003070E0F0007000103000C0707
|
||||
:1001A000000103060C0F0000000F0C0F00000C07ED
|
||||
:1001B0000003060C0F0C0C07000F0C0001030303D7
|
||||
:1001C00000070C0E0709080700070C0C07000007C2
|
||||
:1001D000000000000000000000000000000000001F
|
||||
:1001E000000000000000030700080C0C0E0F0F05B4
|
||||
:1001F0000F0F0703010000000505040F0F0B01009E
|
||||
:00000001FF
|
||||
@@ -0,0 +1,33 @@
|
||||
:10000000000000000000000000080C06060E0606B6
|
||||
:10001000000C06060C06060C000C06000000060C80
|
||||
:1000200000080C0606060C08000C00000800000E74
|
||||
:10003000000E00000C000000000E00000E06060E70
|
||||
:10004000000606060E060606000C00000000000C66
|
||||
:10005000000606060606060C00060C0800080C0E34
|
||||
:10006000000000000000000C00060E0E0E06060642
|
||||
:10007000000606060E0E0E06000C06060606060C08
|
||||
:10008000000C0606060C0000000C0606060E0C0A04
|
||||
:10009000000C06060E080C0E00080C000C06060CE0
|
||||
:1000A000000C000000000000000606060606060C14
|
||||
:1000B000000606060E0C0800000606060E0E0E06CA
|
||||
:1000C00000060E0C080C0E06000C0C0C08000000BC
|
||||
:1000D000000E0E0C0800000E0000000000000000E2
|
||||
:1000E0000000000000000000000000000000000010
|
||||
:1000F0000000000000000000000000000000000000
|
||||
:1001000000000000000000000000000000000000EF
|
||||
:1001100000000000000000000000000000000000DF
|
||||
:1001200000000000000000000000000000000000CF
|
||||
:1001300000000000000000000000000000000000BF
|
||||
:1001400000000000000606000000000000000000A3
|
||||
:10015000000000000000000000000000000000009F
|
||||
:100160000006060000000000000606000000000077
|
||||
:10017000000606000006060000000000000606005B
|
||||
:1001800000080C0606060408000000000000000C31
|
||||
:10019000000C060E0C08000E000E0C080C06060CD7
|
||||
:1001A000000C0C0C0C0E0C0C000C000C0606060CC3
|
||||
:1001B000000C00000C06060C000E060C08000000E7
|
||||
:1001C00000080404080E060C000C06060E060C08B7
|
||||
:1001D000000000000000000000000000000000001F
|
||||
:1001E0000001070F0F0F0F01000000000C0E0F0F92
|
||||
:1001F0000505010F0F0F0F060E06040E0E0C08006A
|
||||
:00000001FF
|
||||
@@ -0,0 +1,33 @@
|
||||
:10000000000100030E0B0E0B00030E0B0E0B000085
|
||||
:10001000000700070E070E03000307090709000089
|
||||
:10002000000E000F0C070E0700030F030709000C5A
|
||||
:10003000000C080F000F0E07070300010008000C5A
|
||||
:100040000000000C0E0F070F00070801000C000E47
|
||||
:10005000000100000F0E030F08070C00080E000738
|
||||
:1000600000070E030F0C000F0E070C000009000024
|
||||
:100070000E070E070C030C0F080F000C080E080EDD
|
||||
:100080000C0E0C0E080C0C0F0C0F080C0C0E0C0EAA
|
||||
:10009000080E080E000C080F0C0F0C030E070E07BD
|
||||
:1000A000000000090C000E07000F0F0C0E030007E4
|
||||
:1000B0000007080E0C000807030F0F0E00000001D8
|
||||
:1000C000000E000C08010007070F0E0F000C0000C7
|
||||
:1000D000000C0008000107030E07000F080F000CBA
|
||||
:1000E000000C07090F0300030E070C07000F000E9A
|
||||
:1000F00000000709070900030E030E0700070007A9
|
||||
:1001000000000E0B0E0B00030E0B0E0B0003000184
|
||||
:1001100000000C070C0700030E030E010001000095
|
||||
:1001200008000C0700070E03070300090000000089
|
||||
:1001300008000C07000F0E0707030001080C080E4B
|
||||
:100140000000080E000F070F030308000E0E0F0734
|
||||
:100150000001000C0E0F030F08030E000F0E00032A
|
||||
:10016000000F0E070F0E000F0C070F00000B000111
|
||||
:10017000080E080E000C0C0F0F0F000000090009FC
|
||||
:10018000080C080C00080F0F0F0F0008080C080CD3
|
||||
:100190000009000900000F0F0C0F000C080E080EDC
|
||||
:1001A000000100090F000C07000F0F0E0E07000FD3
|
||||
:1001B00000030F0E0E000803030F0E0F000C0001CA
|
||||
:1001C0000F070E0E08000303070F000F080E0000B4
|
||||
:1001D000080E080C000103030E07000F0C070800AF
|
||||
:1001E00000000000000907030E0300070C070800C9
|
||||
:1001F000000000010E010E0300030C070C070000B5
|
||||
:00000001FF
|
||||
@@ -0,0 +1,33 @@
|
||||
:1000000008000C000D070D070C000D070D07000080
|
||||
:100010000000080008070C070C000E030E03000088
|
||||
:100020000000000009000C0E0C070E000E0300017A
|
||||
:100030000701030108000C0E0E070F000E0300015C
|
||||
:100040000E0F070700010C0C0F0E0F000701000038
|
||||
:100050000C00070F00070C010F0C0F07030008002E
|
||||
:1000600008000D00000F0E030F00070F0E070F0012
|
||||
:100070000900090000000F0F0F030300070107012B
|
||||
:100080000301030101000F0F0F0F01000301030122
|
||||
:100090000701070103000F030F0F0000090009000B
|
||||
:1000A0000F000E07070F0F000E03000F0D000800D2
|
||||
:1000B000080003000F070F0C0C010007070F0C00CE
|
||||
:1000C000000007010F000F0E0C0C000107070E0FB8
|
||||
:1000D00000010E030F000E070C0E080003010701BC
|
||||
:1000E00000010E030E000C070C0E090000000000BA
|
||||
:1000F00000000E030E030C000C07080708000000A8
|
||||
:1001000000000D070D070C000D070D070C0008007F
|
||||
:100110000000090E090E0C000C070E070E000E0061
|
||||
:100120000300090E0C0F0C000E070E030F000F004A
|
||||
:100130000300010008000C0E0E070F000F01030062
|
||||
:100140000700030008010E000F0E0F070300000058
|
||||
:100150000E00070100030E010F0C070F000008003E
|
||||
:100160000000090000030E070F00030F0C070E002C
|
||||
:100170000701070103000F010F030C030E070E0711
|
||||
:100180000703070303010F030F030301070307031B
|
||||
:100190000E070E070C030F030F01030007010701F1
|
||||
:1001A0000E000C07030F0F000E07000309000000EC
|
||||
:1001B00008000000070F0F0C0E01000307010E00DE
|
||||
:1001C000000003000F070F0E0E00080103000700D8
|
||||
:1001D00003000F010F000F070C0E080001000300C1
|
||||
:1001E00007000F000E030E070C000C0F090E030092
|
||||
:1001F0000E000E000E070C070C00090E090E000081
|
||||
:00000001FF
|
||||
@@ -0,0 +1,17 @@
|
||||
:1000000000000000000000000000000000000000F0
|
||||
:1000100000000000000000000000000000000000E0
|
||||
:1000200000000000000000000000000000000000D0
|
||||
:1000300000000000000000000000000000000000C0
|
||||
:1000400000000000000000000000000000000000B0
|
||||
:1000500000000000000000000000000000000000A0
|
||||
:100060000000000000000000000000000000000090
|
||||
:100070000000000000000000000000000000000878
|
||||
:100080000A0A0A0A0A0E0000000000000000000030
|
||||
:100090000000000000000000000000000000000060
|
||||
:1000A0000000000000000000000000000000000050
|
||||
:1000B0000000000000000000000000000000000040
|
||||
:1000C0000000000000000000000000000000000030
|
||||
:1000D0000000000000000000000000000000000020
|
||||
:1000E0000808080808080808080808080808080A8E
|
||||
:1000F0000A0A0B0B0B0A0A0A0A0A0A0A0A0A0A0A5D
|
||||
:00000001FF
|
||||
@@ -0,0 +1,3 @@
|
||||
:100000001111010141418181C1C12121E1E1E1E100
|
||||
:10001000E0E0E8E8E4E4ECECE2E2EAEAE6E6EEEE70
|
||||
:00000001FF
|
||||
129
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/6404d1.hex
Normal file
129
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/6404d1.hex
Normal file
@@ -0,0 +1,129 @@
|
||||
:10000000488A48D8A530D0038D000F2C2A0810202C
|
||||
:10001000A561C992D01EA560C93FD018BABD05011F
|
||||
:10002000C920B00CC9409008C9109010C918B00C74
|
||||
:1000300068AA6840A9928561A93F856078D8A27FA7
|
||||
:100040009AAD0018C9AAF0034C4E30200018A20047
|
||||
:10005000205238A210205238A22820523820FA36D6
|
||||
:100060002069302007314C6030A90085358D010CA6
|
||||
:1000700020683820323620B137A900A65120253813
|
||||
:10008000A920A2009D2E04E8E004D0F8A226A90130
|
||||
:10009000202538A20AA900202538A535D007A900B7
|
||||
:1000A000A218202538E630A530D017E635A535C989
|
||||
:1000B0000CD007A90085354C70302C300850032037
|
||||
:1000C00068382C2A0830034C623B204D3BA20020AC
|
||||
:1000D000E734E8E004D0F8A9008D16008D14008DF7
|
||||
:1000E00015008D100C8D200C2C000C50FB8D800CFD
|
||||
:1000F00020B137A536D004A520F0AA20AB39A5360B
|
||||
:10010000D004A520F09F60EAA9008535206838A2B8
|
||||
:1001100010205238A900A651202538A900852A2090
|
||||
:100120003236204D3BA551C904D00A20B1378D800D
|
||||
:100130000CA520F0F68D310CA9008520A20E2025FB
|
||||
:1001400038A900A20C202538A551C906D0038D413D
|
||||
:100150000C20E2398D800CA551C906D0112C2D0838
|
||||
:10016000101E2C2C0830EA8D400CA901101720B16C
|
||||
:1001700037A520F0ED8D300C8D410C2C2D0830D1A1
|
||||
:100180008D300CA902855CA20E205238A53AC940D8
|
||||
:10019000F015A900A214202538A53AC930F0038D26
|
||||
:1001A0007407A53B8D7507A2042052388D000C20E2
|
||||
:1001B0006838204D3BE630A200206E37E8E45CD082
|
||||
:1001C000F8A65C20E734E8E004D0F8A55CC901D0CB
|
||||
:1001D00005A20120A83A8D100C8D200CA200A900C8
|
||||
:1001E0008522A9101002A9148523A000B12230098C
|
||||
:1001F000B53DF005D63D4C1C32B1223009A9009521
|
||||
:100200003D95544C1C32A9009533B554D00AA55CD9
|
||||
:1002100095009554A90F8516A910953DA516F00ACD
|
||||
:10022000A5304A90054A9002C616B533F02BE0007F
|
||||
:10023000F0058D210CD0038D110CD6338A0AA8A9A4
|
||||
:1002400002E000F0062CC0084C4E322C80087002F0
|
||||
:10025000A9FE18791900991900A000B1222A1004EA
|
||||
:10026000A9209533E000F0058D800DD0038D000DA1
|
||||
:10027000A5304A90234A9020200D378524C9F910D3
|
||||
:100280000CE000F0058D210CD0038D110CA5241875
|
||||
:100290007500D002A9019500B5004A4A4A8522B4EA
|
||||
:1002A0005AB55A0A8524B9E43DA8A90018652288E0
|
||||
:1002B000D0FA4A4A4A38E5241002A900C91030028F
|
||||
:1002C000A90F95148A0AA8206E37B50049FF4A4A3B
|
||||
:1002D0004A4A4A4A29061869038522B9190029F8A9
|
||||
:1002E0008524B50429F838E524F033301AC91030D4
|
||||
:1002F0000CE000F0058D210CD0038D110CA9003805
|
||||
:10030000E52285224C1733C9F8100CE000F0058D6A
|
||||
:10031000210CD0038D110CA52218750495042072B0
|
||||
:100320003520A83A862AA531F01CA5302920F00FE7
|
||||
:10033000A9209D2904E8E00DD0F8A62A4C4633A256
|
||||
:1003400012A900202538A62AE000D007AD5B0429B9
|
||||
:100350003F1003AD4204C53A3022E000D007AD5C47
|
||||
:1003600004293F1009A55CC901F011AD4304C53B48
|
||||
:10037000300AA531D006A532D002E632E000D039ED
|
||||
:10038000C63CD035A550D014E650A9208D4E04A906
|
||||
:10039000398D4F04A93A8D50044CB233AD5004C985
|
||||
:1003A00030D00FAD4F04C930F012CE4F04A93A8DB2
|
||||
:1003B0005004CE5004A53F853C4CD134A532F01DED
|
||||
:1003C000A9008532E631A9338D4F04A900862AA2FF
|
||||
:1003D00012202538A62AA53F853C4CD1348D010C2E
|
||||
:1003E0008D100C8D200CA900851685148515A9018A
|
||||
:1003F000A2102025388D300C8D400CA90085208559
|
||||
:1004000036A208205238A901A208202538AD5B0485
|
||||
:10041000290F0A0A0A0A8522AD5C04290F05228DDC
|
||||
:100420002200A522C5583004A21C100AC559300468
|
||||
:10043000A21A1002A216A901202538A55CC901F054
|
||||
:100440002DAD4204290F0A0A0A0A8522AD43042968
|
||||
:100450000F05228522A522C5583004A224100AC502
|
||||
:10046000593004A2221002A21EA900202538A90892
|
||||
:10047000A27FA07F85268628842A20B137A536D082
|
||||
:1004800049A520D045F000A526A628A42A88D0E4B6
|
||||
:10049000852A862BE630A5302920F008A2102052AC
|
||||
:1004A000384CAB34A901A210202538A52AA62B8DE3
|
||||
:1004B000800CA07FCAD0BDA07FA27FC9099002A9ED
|
||||
:1004C0000538E90110AEA901852A604C08314CE6D7
|
||||
:1004D00031206E37E8E45CD0F520183A2C000C503F
|
||||
:1004E000FB8D800C4CB231202B35B5004A4A4A4A6C
|
||||
:1004F0004A1869018522A003B50438F52C29F8F0C3
|
||||
:10050000173002A0FD98187504950486260626A4C7
|
||||
:1005100026991900A9FF8522B500186522DDF53D51
|
||||
:100520009003BDF53D950020723560A9008522A994
|
||||
:10053000048523B5401869044A4A4A491F186522B0
|
||||
:100540008522A900852465238523B54418690409FB
|
||||
:100550000749FF0A26240A26241865228522A52495
|
||||
:1005600065238523A000B12210070A0A0A0A0A950A
|
||||
:100570002C608622A9008552B500F0724A4A4A854D
|
||||
:1005800024B5044A4A4AAA8626BD062FF02D0AAA97
|
||||
:1005900020FF35A622A5281875089508A5297540BD
|
||||
:1005A0001017C9FC3008A9018552A900F00BC9F742
|
||||
:1005B0003007A9018D5200A9F79540A626BD262F28
|
||||
:1005C000F02C0AAA20FF35A622A52818750C950C38
|
||||
:1005D000A5297544100CC9E83012A9018552A9E873
|
||||
:1005E000300AC9201006A9018552A9209544A622E7
|
||||
:1005F000E45C300AA552F006B504492095046086F3
|
||||
:10060000258A100649FF186901AAA90085288529AD
|
||||
:10061000A5281865248528A90065298529CAD0F050
|
||||
:10062000A525100DA90038E5288528A900E529850C
|
||||
:100630002960A200A920A00095409408940CE8E04D
|
||||
:1006400004D0F5A200A9019500E8E004D0F9A200C9
|
||||
:10065000A000A9C09504991900C8C8E8E004D0F426
|
||||
:10066000A92C8547A9388546A9448545A9508544C4
|
||||
:10067000AD330849FF182A2A2A2903A8B9F13D8574
|
||||
:100680003C853FA900A2009533953D9554E8E002D2
|
||||
:10069000D0F5A900853785308557853285318D1095
|
||||
:1006A0000C8D200C85148515853885508D16008D90
|
||||
:1006B000000D8D800D8D000E8D800EA901855CA929
|
||||
:1006C00020A2009D4B04E8E00AD0F8A900A2002077
|
||||
:1006D0002538A52AD016A9B08D5D048D5C048D5BEC
|
||||
:1006E00004A9308D44048D43048D4204A9308D4FFC
|
||||
:1006F000048D5004A9318D4E0460A90085208536F3
|
||||
:100700008D300C8D400C852AA9028551608626A962
|
||||
:1007100000955ABD18081010F65ABD1A081009F6AF
|
||||
:100720005ABD1C081002F65AB50029F84A4A852815
|
||||
:10073000B55A2902F002E628BD28081008A628BDEF
|
||||
:10074000462F4C4A37A628BD862FA62618565AB0E3
|
||||
:100750000629F04A4A4A4A290F8524365AA908240C
|
||||
:1007600024F006A52409F08524A524A626608A0A7B
|
||||
:10077000A8B533D03BE000F0062CC0084C82372CE3
|
||||
:100780008008302CA9038522E000F0062CC0084C1C
|
||||
:1007900095372C80087004A9FD8522B919001865C9
|
||||
:1007A00022991900E000F0058D800ED0038D000E17
|
||||
:1007B0006020E237A90685512C31081011701EA95E
|
||||
:1007C000048551A536C902F00160C636100F7004C9
|
||||
:1007D000A9028551A536D001605002E620E620C668
|
||||
:1007E0003660A90F852285242C4008100350016033
|
||||
:1007F0008D800CA0FA88D0FD2C40085006A90F85EA
|
||||
:00000001FF
|
||||
129
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/6405-02e1.hex
Normal file
129
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/6405-02e1.hex
Normal file
@@ -0,0 +1,129 @@
|
||||
:1000000022100AA522F006C622D002E6362C4008AD
|
||||
:100010001006A90F8524100AA524F006C624D002D4
|
||||
:10002000E6364C603FA000C900F002A0808428BDE5
|
||||
:10003000863D8522BD873D8523BDAE3D8524BDAF70
|
||||
:100040003D8525A000B122F00805289124C84C4523
|
||||
:100050003860BDAE3D8522BDAF3D8523A920A000FF
|
||||
:100060009122C8C020D0F960A535D00DA22A205217
|
||||
:1000700038E8E8E036D0F7A5350AAABD6E3D8524FC
|
||||
:10008000BD6F3D8525A000B124994800C8C006D0A9
|
||||
:10009000F620B137A000B14829F04A4A4A4A09A0DF
|
||||
:1000A000914CA54C186901854CA900654D854DB151
|
||||
:1000B00048290F09A0914CA5481869018548A90055
|
||||
:1000C00065498549A54C186901854CA900654D8590
|
||||
:1000D0004DA549C54BF002D0B8A548C54AD0B22CB1
|
||||
:1000E0003008303CA5350A0AA8A200B9D62E9522C0
|
||||
:1000F000C8E8E004D0F5A200A000A93C9122A0012C
|
||||
:10010000A93D9122A020A93E9122A021A93F9122A0
|
||||
:10011000E8E001D00BA5248522A52585234CF838DD
|
||||
:10012000A200A535F00EE8C9043009C906F005C9DA
|
||||
:1001300007F001E8BDE83D8558BDEB3D8559BDEEB2
|
||||
:100140003D8556AD330849FF182A2A2A2903186924
|
||||
:10015000028522A200862486268628A524F8186512
|
||||
:10016000588524A5261865598526A528186556851D
|
||||
:1001700028D8E8E422D0E4A5248558A5268559A5E9
|
||||
:100180002885568D800CAD3208100BA940853A8524
|
||||
:100190003BA556855860A55629F04A4A4A4A093077
|
||||
:1001A000853AA556290F0930853B60AD4B04C9CB74
|
||||
:1001B000D029AD553FC94BD0222C2F083001602CDF
|
||||
:1001C000000C10FB2C000C30FBA90AA000C8D0FDCD
|
||||
:1001D00038E901D0F62C000C300160A9008520859B
|
||||
:1001E00036602C2E081005A900855760A557F00130
|
||||
:1001F00060A9F08538A0FA88D0FD2C2E0810016087
|
||||
:10020000E638D0F1E635A535C90CD002A900853510
|
||||
:10021000206838A901855760AD5D04293F20973AD1
|
||||
:10022000A522F005A9B08D5D04AD5C04293F20979F
|
||||
:100230003AA522F005A9B08D5C04AD5B04293F20EE
|
||||
:10024000973AA522F005A9B08D5B04AD4404209730
|
||||
:100250003AA522F005A9308D4404AD430420973A15
|
||||
:10026000A522F005A9308D4304AD420420973AA59C
|
||||
:1002700022F005A9308D4204AD4F0420973AA52203
|
||||
:10028000F005A9398D4F04AD500420973AA522F00E
|
||||
:1002900005A9398D500460C9309008C93AB004A945
|
||||
:1002A00000F002A901852260A5350AA8B9CA2D85EA
|
||||
:1002B00024B9CB2D8525E000F005AD44041003AD35
|
||||
:1002C0005D044A29070AA8B1248528C8B1248529D4
|
||||
:1002D000B54429F018690429F0852AB5404A4A4AEC
|
||||
:1002E0004A290F052A852AA000B128C52AF008C886
|
||||
:1002F000C004D0F54C4C3BE000D02AAD5D04186939
|
||||
:1003000002C9BAD01AAD5C04186901C9BAD00BADE4
|
||||
:100310005B041869018D5B04A9B08D5C04A9B08DE4
|
||||
:100320005D044C4C3BAD4404186902C93AD01AAD87
|
||||
:100330004304186901C93AD00BAD42041869018D14
|
||||
:100340004204A9308D4304A9308D440460A200A06A
|
||||
:1003500000B5409510B544991800E8C8C8E004D02D
|
||||
:10036000F060A200A9019D00048D800CDD0004D086
|
||||
:10037000F59D00058D800CDD0005D0F59D00068DF6
|
||||
:10038000800CDD0006D0F59D00078D800CDD000798
|
||||
:10039000D0F5E8D0D1186901C901D0CAA9008516E5
|
||||
:1003A000A200A9108524A9058525A900857EA9207C
|
||||
:1003B000857FA000A90085268522A52218717E854B
|
||||
:1003C00022C8D0F68D800CE67FE626A526C904D08B
|
||||
:1003D000E9A522DD643DF009A0008A09309124E6F8
|
||||
:1003E00024E8E008D0CCA9D48D6A04A9C98D6B0497
|
||||
:1003F000A9CD8D6C04A9C58D6D04A9B08D71042C97
|
||||
:100400003008501AA9C38DCA048DCC04A9D98DCB4C
|
||||
:1004100004A9CC8DCD04A9C58DCE044C2A3CA200E4
|
||||
:10042000A9209DCA04E8E005D0F8A9202C330830A3
|
||||
:1004300002A9B18D6F04A9B62C33083008A9B27097
|
||||
:1004400002A9B530047002A9B98D7004A98A852269
|
||||
:10045000A90485232C31083018700BA9208524A904
|
||||
:100460003E85254CA13CA9598524A93E85254CA152
|
||||
:100470003C700BA93B8524A93E85254CA13CA9C411
|
||||
:100480008D8A04A9C58D8B04A9CD8D8C04A9CF8D2F
|
||||
:100490008D04A200A9209D8E04E8E013D0F84CAE94
|
||||
:1004A0003CA000B12409809122C8C013D0F52C32A1
|
||||
:1004B00008100FA200A9209DAA04E8E00DD0F84C76
|
||||
:1004C000DF3CA9AA8522A9048523A9F98524A93E90
|
||||
:1004D0008525A000B12409809122C8C00DD0F5A9BE
|
||||
:1004E000202C30083002A93C8DEA042C3008300260
|
||||
:1004F000A93D8DEB042C30083002A93E8D0A052C55
|
||||
:1005000030083002A93F8D0B052C2A0810034C3C03
|
||||
:10051000308D310C8D410C8D100CA200BD18088D52
|
||||
:10052000800C30038D110CE8E006D0F0AD280830C7
|
||||
:10053000038D110CAD290830038D110C2C400830AF
|
||||
:10054000038D110C70038D110C2C2E0830038D11AE
|
||||
:100550000C2C2C0830038D110C2C2D0830038D1120
|
||||
:100560000C4CFF3BCC510991360F3AD4F6310020A8
|
||||
:1005700026214C2272239824BE25E4260A283029FD
|
||||
:10058000562A7C2BA22CF93D193E343E503E6D3E3E
|
||||
:10059000813EA23EC13EE13EF93E073F273F2E3F4E
|
||||
:1005A000483F4F3F273F2E3F483F4F3F553F200496
|
||||
:1005B00000040004000460076007C0046007000432
|
||||
:1005C000290460077807C004780778076307630782
|
||||
:1005D000630763074B04400460048004A004C00464
|
||||
:1005E000E00400050C0806050704030302010503E7
|
||||
:1005F0000226384B5EA090807020424C41434B2035
|
||||
:100600002020202020202054494D4520202020203B
|
||||
:10061000202020D7C8C9D4C5002020202020202099
|
||||
:100620003120434F494E2050455220504C415945AE
|
||||
:1006300052202000202020202020203220434F491B
|
||||
:100640004E532050455220504C41594552202000D5
|
||||
:100650002020202031204F52203220504C4159453B
|
||||
:1006600052532050455220434F494E200020202015
|
||||
:1006700020202020202020202020524154494E4775
|
||||
:100680000020475245592043415253204452495675
|
||||
:1006900045204155544F4D41544943414C4C5920FC
|
||||
:1006A000200020205055534820425554544F4E208E
|
||||
:1006B000544F204348414E474520545241434B53E9
|
||||
:1006C0000020202020202020505553482053544102
|
||||
:1006D000525420425554544F4E2020202020202098
|
||||
:1006E00000202020202020202020202047414D4590
|
||||
:1006F00020204F564552202000455854454E444531
|
||||
:100700004420504C4159002020455854454E444502
|
||||
:100710004420504C415920464F5220202030205038
|
||||
:100720004F494E545320004752414E4E590020200D
|
||||
:1007300020202020313220444946464552454E541F
|
||||
:1007400020545241434B5300524F4F4B49450020D8
|
||||
:100750002050524F004B4545202047414D45530006
|
||||
:10076000A52238E9068522A52438E90685242C40EF
|
||||
:100770000810035001608D800CA0FA88D0FD2C4039
|
||||
:10078000085006A9098522100AA522F006C622D023
|
||||
:1007900002E6362C40081006A909852410D0A524AD
|
||||
:1007A000F0CCC624D0C8E6364C6E3F0000000000F6
|
||||
:1007B0000000000000000000000000000000000039
|
||||
:1007C0000000000000000000000000000000000029
|
||||
:1007D0000000000000000000000000000000000019
|
||||
:1007E0000000000000000000000000000000000009
|
||||
:1007F0000000000000000000000000303C303C30F1
|
||||
:00000001FF
|
||||
129
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/6442-01d1.hex
Normal file
129
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/6442-01d1.hex
Normal file
@@ -0,0 +1,129 @@
|
||||
:10000000488A48D8A530D0038D000F2C2C0810202A
|
||||
:10001000A561C992D01EA560C93FD018BABD05011F
|
||||
:10002000C920B00CC9409008C9109010C918B00C74
|
||||
:1000300068AA6840A9928561A93F856078D8A27FA7
|
||||
:100040009AAD0018C9AAF0034C4E30200018A21631
|
||||
:1000500020B738A20420B738A20C20B738200337C5
|
||||
:1000600020693020F7304C6030A900853585388D07
|
||||
:10007000010C20CD3820DA3520EE3920FF37A901D8
|
||||
:10008000A21E208A38A900A651208A38A900A20EF3
|
||||
:10009000208A38A900A210208A38E630AD3000D07E
|
||||
:1000A00011E635A535C90CD009A900853585384C30
|
||||
:1000B00072302C2C0830034C523A203D3AA20020DA
|
||||
:1000C0008534E8E004D0F8A90085168D14008D1061
|
||||
:1000D0000C2C40081002700320FF372C000C50F14C
|
||||
:1000E0008D800CA536D004A520F0AF20BA39A536F6
|
||||
:1000F000D004A520F0A460EAA2008635863820CD81
|
||||
:1001000038A20620B738A900A200208A38A90085A5
|
||||
:100110002A20DA35203D3A20FF378D800CA520F0CB
|
||||
:10012000F68D310CA900A214208A382C2D0830E756
|
||||
:10013000C620A20020B738A21420B738A21220B7D8
|
||||
:1001400038A53AC940F015A900A212208A38A53A6C
|
||||
:10015000C930F0038D7407A53B8D75078D000C2009
|
||||
:100160003D3AA538F00320CD38E63020D837A2013B
|
||||
:10017000208534E8E004D0F88D100CA2002C00108B
|
||||
:100180003009A53DF005C63D4CAF312C00103009BB
|
||||
:10019000A900853D853E4CAF31A9008533A53ED0F1
|
||||
:1001A0000AA9019500853EA90F8516A910853DA5D0
|
||||
:1001B00016F00AA5304A90054A9002C616A533F0FB
|
||||
:1001C000188D110CC6338A0AA8A9022C8008700267
|
||||
:1001D000A9FE187919009919002C00105004A920C3
|
||||
:1001E00085338D000DA5304A901A4A90172082372A
|
||||
:1001F0008524C9F910038D110CA524187500D002AF
|
||||
:10020000A9019500B5004A4A4A8522A432A5320ABE
|
||||
:100210008524B9A13CA8A90018652288D0FA4A4AC9
|
||||
:100220004A38E5241002A900C9103002A90F85142C
|
||||
:100230008A0AA820D837B50049FF4A4A4A4A4A4A9A
|
||||
:1002400085261869038522B9190029F88524B50483
|
||||
:1002500029F838E524F0213011C91030038D110C34
|
||||
:10026000A90038E52285224C7132C9F810038D119E
|
||||
:100270000CA5221875049504201035A5350AAABDD1
|
||||
:10028000CA2D8524BDCB2D8525AD2A044A29070A10
|
||||
:10029000A8B1248528C8B1248529A622B54429F00F
|
||||
:1002A000852AB5404A4A4A4A290F052A852AA000CC
|
||||
:1002B000B128C52AF008C8C004D0F54C0A33AD2ACD
|
||||
:1002C00004186902C9BAD01AAD2904186901C9BA5B
|
||||
:1002D000D00BAD28041869018D2804A9B08D29041C
|
||||
:1002E000A9B08D2A04C9B0D0212C30087009A537D7
|
||||
:1002F000D005E6374C0A33A9008537E635A535C960
|
||||
:100300000CD004A906853520CD38A531F015A530CF
|
||||
:100310002920F008A20220B7384C2333A202A900FA
|
||||
:10032000208A38AD2804293FC53A3013AD29042965
|
||||
:100330003FC53B300AA531D006A534D002E634C60D
|
||||
:100340003CD035A550D014E650A9208D3A04A9B967
|
||||
:100350008D3B04A9BA8D3C044C7133AD3C04C9B04B
|
||||
:10036000D00FAD3B04C9B0F012CE3B04A9BA8D3C0E
|
||||
:1003700004CE3C04A53F853C4C6A34A534F019A951
|
||||
:10038000008534E631A9B38D3B04A900A202208A7E
|
||||
:1003900038A53F853C4C6A348D010C8D100CA900AA
|
||||
:1003A00085168514A20220B738A20C20B738A90000
|
||||
:1003B000A20C208A38A900A216208A38AD28042968
|
||||
:1003C0000F0A0A0A0A8522AD2904290F052285226F
|
||||
:1003D000A522C5543004A218100AC5553004A21A2B
|
||||
:1003E0001002A21CA901208A38A520D0038D300C50
|
||||
:1003F00020EE39A908A27FA07F85268628842A209E
|
||||
:10040000FF37A536D04FA520F0088D310C2C2D08D4
|
||||
:100410001043A526A628A42A88D0DE852A862BE6A6
|
||||
:1004200030A5302920F008A21620B7384C3634A960
|
||||
:1004300001A216208A38A52AA62B8D800CA07FCA7F
|
||||
:10044000D0B7A07FA27FC9099002A90538E90110A1
|
||||
:10045000A8A901852AA21620B738A20C20B738A572
|
||||
:1004600020D0048D300C604CF83020D8372C400858
|
||||
:100470001002700320FF372C000C50F1201B378D29
|
||||
:10048000800C4C5F3120C934B5004A4A4A4A4A18A8
|
||||
:1004900069018522A003B50438F52C29F8F017303E
|
||||
:1004A00002A0FD98187504950486260626A42699B0
|
||||
:1004B0001900A9FF8522B500186522DDA93C90032B
|
||||
:1004C000BDA93C950020103560A9008522A90485AE
|
||||
:1004D00023B5401869044A4A4A491F1865228522F3
|
||||
:1004E000A900852465238523B544186904090749B3
|
||||
:1004F000FF0A26240A26241865228522A5246523BE
|
||||
:100500008523A000B12210070A0A0A0A0A952C6066
|
||||
:100510008622A9008552B500F0724A4A4A8524B560
|
||||
:10052000044A4A4AAA8626BD062FF02D0AAA20A709
|
||||
:1005300035A622A5281875089508A5297540101715
|
||||
:10054000C9FC3008A9018552A900F00BC9F7300792
|
||||
:10055000A9018D5200A9F79540A626BD262FF02CA3
|
||||
:100560000AAA20A735A622A52818750C950CA5293E
|
||||
:100570007544100CC9E83012A9018552A9E8300A67
|
||||
:10058000C9201006A9018552A9209544A622E000A1
|
||||
:10059000F014A552F010A9209540A9509544A9C087
|
||||
:1005A0009504A90195006086258A100649FF1869FF
|
||||
:1005B00001AAA90085288529A5281865248528A9C8
|
||||
:1005C0000065298529CAD0F0A525100DA90038E5B8
|
||||
:1005D000288528A900E529852960A200A920A00076
|
||||
:1005E00095409408940CE8E004D0F5A200A9019588
|
||||
:1005F00000E8E004D0F9A200A000A9C09504991970
|
||||
:1006000000C8C8E8E004D0F4A9508544A944854551
|
||||
:10061000A9388546A92C8547AD330849FF182A2AF1
|
||||
:100620002A2903A8B9A53C853C853FA9048554A97E
|
||||
:10063000028555A9038556AD330849FF182A2A2A91
|
||||
:1006400029031869028522A200862486268628A509
|
||||
:1006500024F81865548524A5261865558526A528EF
|
||||
:100660001865568528D8E8E422D0E4A5248554A549
|
||||
:10067000268555A5288556AD3208100DA940853A26
|
||||
:10068000853BA55685544C9D36A55629F04A4A4AC5
|
||||
:100690004A0930853AA556290F0930853BA90085BE
|
||||
:1006A0003785308D100C851485158533853D853E45
|
||||
:1006B00085388534853185508D16008D000D8D006F
|
||||
:1006C0000EAD2A048526AD29048527AD2804852B87
|
||||
:1006D000A901A204208A38A5268D2A04A5278D29E0
|
||||
:1006E00004A52B8D2804A52AD00BA9B08D2A048D32
|
||||
:1006F00029048D2804A9B08D3B048D3C04A9B18D3B
|
||||
:100700003A0460A900852085368D300C852AA930F1
|
||||
:10071000855785588559A906855160AD2A04293F1A
|
||||
:10072000207137A522F005A9B08D2A04AD2904292E
|
||||
:100730003F207137A522F005A9B08D2904AD28040A
|
||||
:10074000293F207137A522F005A9B08D2804AD3BC3
|
||||
:1007500004293F207137A522F005A9B98D3B04ADCE
|
||||
:100760003C04293F207137A522F005A9B98D3C042E
|
||||
:1007700060C9309008C93AB004A900F002A9018507
|
||||
:1007800022608626A90085322C28081010E6322C1B
|
||||
:1007900029081009E6322C2A081002E632B5002991
|
||||
:1007A000F84A4AAAA9022432F001E8BD462F2C2BB0
|
||||
:1007B000083003BD862F184632B00629F04A4A4A4F
|
||||
:1007C0004A290F85242632A9082424F006A52409E5
|
||||
:1007D000F08524A524A62660A200A000A533D01E83
|
||||
:1007E0002C80083019A90385222C80087004A9FDEB
|
||||
:1007F0008522B919001865229919008D000E602014
|
||||
:00000001FF
|
||||
129
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/6443-01e1.hex
Normal file
129
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/6443-01e1.hex
Normal file
@@ -0,0 +1,129 @@
|
||||
:100000003038A90A85512C31081011701EA90885B5
|
||||
:1000100051A536C902F00160C636100F7004A9065A
|
||||
:100020008551A536D001605002E620E620C6366034
|
||||
:10003000A90985228523852485252C4008100B508D
|
||||
:1000400009A5222523C909D001608D800CA201A039
|
||||
:10005000FA88D0FD8AD0072C4008501F70052C402C
|
||||
:10006000081018B522F006A9099522D018D624D078
|
||||
:1000700014E636A90995229524D00AA9099524B534
|
||||
:1000800022F002D622CA10CC30B0A000C900F00283
|
||||
:10009000A0808428BD4F3C8522BD503C8523BD7186
|
||||
:1000A0003C8524BD723C8525A000B122F0080528BE
|
||||
:1000B0009124C84CAA3860BD713C8522BD723C8534
|
||||
:1000C00023A920A0009122C8C020D0F9608D800C07
|
||||
:1000D000A538D029A535D00DA22220B738E8E8E010
|
||||
:1000E00030D0F7A5350AAABD373C8524BD383C85FC
|
||||
:1000F00025A000B124994800C8C006D0F618A5482C
|
||||
:100100006918854EA9006549854FA901853820FFEA
|
||||
:1001100037A000B14829F04A4A4A4A09A0914CA5A3
|
||||
:100120004C186901854CA900654D854DB148290FD2
|
||||
:1001300009A0914CA5481869018548A90065498521
|
||||
:1001400049A54C186901854CA900654D854DA54907
|
||||
:10015000C54BF00CA535F0BBA549C54FF00ED0B38B
|
||||
:10016000A548C54AD0EEA9008538F006A548C54E79
|
||||
:10017000D0A120FF372C3008303CA5350A0AA8A2B0
|
||||
:1001800000B9D62E9522C8E8E004D0F5A200A00060
|
||||
:10019000A93C9122A001A93D9122A020A93E912233
|
||||
:1001A000A021A93F9122E8E001D00BA5248522A53A
|
||||
:1001B0002585234C8E398D800C60AD6B04C9CBD066
|
||||
:1001C00026AD043EC94BD01F2C2F083001602C00F7
|
||||
:1001D0000C10FB2C000C30FBA90AA000C8D0FD3885
|
||||
:1001E000E901D0F6300160A9008520853660A900BC
|
||||
:1001F000A220208A38AD2804293FC559302FF002AB
|
||||
:100200001016AD2904293FC5583022F0021009AD5F
|
||||
:100210002A04293FC5573015AD2804293F8559AD1B
|
||||
:100220002904293F8558AD2A04293F8557A5578DB4
|
||||
:100230003B04A5588D3A04A5598D390460A200A04D
|
||||
:1002400000B5409510B544991800E8C8C8E004D03E
|
||||
:10025000F060A200A9019D00048D800CDD0004D097
|
||||
:10026000F59D00058D800CDD0005D0F59D00068D07
|
||||
:10027000800CDD0006D0F59D00078D800CDD0007A9
|
||||
:10028000D0F5E8D0D1186901C901D0CAA9008516F6
|
||||
:10029000A200A9108524A9058525A900857EA9208D
|
||||
:1002A000857FA000A90085268522A52218717E855C
|
||||
:1002B00022C8D0F68D800CE67FE626A526C904D09C
|
||||
:1002C000E9A522DD2E3CF009A0008A09309124E640
|
||||
:1002D00024E8E008D0CCA9D48D6A04A9C98D6B04A8
|
||||
:1002E000A9CD8D6C04A9C58D6D04A9CC8DCC04A9B4
|
||||
:1002F000C18DCD04A9D08DCE04A9D38DCF04A9B0D2
|
||||
:100300008D7104A9B12C30087002A9B28DCA04A95C
|
||||
:10031000202C33083002A9B18D6F04A9B62C330804
|
||||
:100320003008A9B27002A9B530047002A9B98D7065
|
||||
:1003300004A98A8522A90485232C31083018700B62
|
||||
:10034000A9058524A93D85254C863BA93C8524A982
|
||||
:100350003D85254C863B700BA9208524A93D85252C
|
||||
:100360004C863BA9C48D8A04A9C58D8B04A9CD8D6B
|
||||
:100370008C04A9CF8D8D04A200A9209D8E04E8E0F5
|
||||
:100380000CD0F84C933BA000B12409809122C8C046
|
||||
:1003900010D0F52C3208100FA200A9209DAA04E865
|
||||
:1003A000E00DD0F84CC43BA9AA8522A9048523A955
|
||||
:1003B000D58524A93C8525A000B12409809122C8B7
|
||||
:1003C000C00DD0F5A9202C30083002A93C8DEA04DC
|
||||
:1003D0002C30083002A93D8DEB042C30083002A9E6
|
||||
:1003E0003E8D0A052C30083002A93F8D0B052C2CC0
|
||||
:1003F0000810034C3C308D300C8D100CA200BD2831
|
||||
:10040000088D800C30038D110CE8E003D0F0AD2B8B
|
||||
:100410000830038D110C2C400830038D110C700333
|
||||
:100420008D110C2C2D0830038D110C4C033BCC513D
|
||||
:100430000991382FAC4630002026214C2272239897
|
||||
:1004400024BE25E4260A283029562A7C2BA22CAD6E
|
||||
:100450003CCB3CE33CFE3C193D343D4F3D5D3D7D96
|
||||
:100460003D9B3DBC3DDB3DF23DF63DFD3D043E0F79
|
||||
:100470003EA004400420046007600760076007E0B6
|
||||
:1004800004A0046007E00400047507750775076B96
|
||||
:10049000042E04400460048004A004C004E00400AE
|
||||
:1004A000050C08060526384B5EA0908070202020A1
|
||||
:1004B00020202020594F555220434152204953209B
|
||||
:1004C000D7C8C9D4C52020202020002020202020EB
|
||||
:1004D0002020202020455854454E44454420504C6F
|
||||
:1004E000415900202053434F5245202020202020F6
|
||||
:1004F000202020202020202054494D45200020206D
|
||||
:100500002020202020203120434F494E20504552AA
|
||||
:100510002047414D45202020002020202020202061
|
||||
:100520003220434F494E53205045522047414D45BC
|
||||
:100530002020200020202020202020203220474181
|
||||
:100540004D45532050455220434F494E2020002016
|
||||
:10055000202020202020524154494E470020424C68
|
||||
:1005600041434B2043415253204452495645204178
|
||||
:1005700055544F4D41544943414C4C59002020544F
|
||||
:100580005241434B53204348414E47452041555427
|
||||
:100590004F4D41544943414C4C590020204558543B
|
||||
:1005A000454E44454420504C415920464F5220204E
|
||||
:1005B000203020504F494E5453202000202020202E
|
||||
:1005C0002020205055534820535441525420425526
|
||||
:1005D00054544F4E20202020202000202020202076
|
||||
:1005E0002020202020202047414D4520204F5645E7
|
||||
:1005F000520050524F00524F4F4B49450047524115
|
||||
:100600004E4E59004B4545202047414D455300482B
|
||||
:100610004947482053434F524520202020200000C6
|
||||
:1006200000000000000000000000000000000000CA
|
||||
:1006300000000000000000000000000000000000BA
|
||||
:1006400000000000000000000000000000000000AA
|
||||
:10065000000000000000000000000000000000009A
|
||||
:10066000000000000000000000000000000000008A
|
||||
:10067000000000000000000000000000000000007A
|
||||
:10068000000000000000000000000000000000006A
|
||||
:10069000000000000000000000000000000000005A
|
||||
:1006A000000000000000000000000000000000004A
|
||||
:1006B000000000000000000000000000000000003A
|
||||
:1006C000000000000000000000000000000000002A
|
||||
:1006D000000000000000000000000000000000001A
|
||||
:1006E000000000000000000000000000000000000A
|
||||
:1006F00000000000000000000000000000000000FA
|
||||
:1007000000000000000000000000000000000000E9
|
||||
:1007100000000000000000000000000000000000D9
|
||||
:1007200000000000000000000000000000000000C9
|
||||
:1007300000000000000000000000000000000000B9
|
||||
:1007400000000000000000000000000000000000A9
|
||||
:100750000000000000000000000000000000000099
|
||||
:100760000000000000000000000000000000000089
|
||||
:100770000000000000000000000000000000000079
|
||||
:100780000000000000000000000000000000000069
|
||||
:100790000000000000000000000000000000000059
|
||||
:1007A0000000000000000000000000000000000049
|
||||
:1007B0000000000000000000000000000000000039
|
||||
:1007C0000000000000000000000000000000000029
|
||||
:1007D0000000000000000000000000000000000019
|
||||
:1007E0000000000000000000000000000000000009
|
||||
:1007F0000000000000000000000000303C303C30F1
|
||||
:00000001FF
|
||||
@@ -0,0 +1,3 @@
|
||||
set_global_assignment -name IP_TOOL_NAME "ROM: 1-PORT"
|
||||
set_global_assignment -name IP_TOOL_VERSION "13.1"
|
||||
set_global_assignment -name VHDL_FILE [file join $::quartus(qip_path) "Char_LSB.vhd"]
|
||||
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/Char_LSB.vhd
Normal file
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/Char_LSB.vhd
Normal file
@@ -0,0 +1,141 @@
|
||||
-- megafunction wizard: %ROM: 1-PORT%
|
||||
-- GENERATION: STANDARD
|
||||
-- VERSION: WM1.0
|
||||
-- MODULE: altsyncram
|
||||
|
||||
-- ============================================================
|
||||
-- File Name: Char_LSB.vhd
|
||||
-- Megafunction Name(s):
|
||||
-- altsyncram
|
||||
--
|
||||
-- Simulation Library Files(s):
|
||||
-- altera_mf
|
||||
-- ============================================================
|
||||
-- ************************************************************
|
||||
-- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
|
||||
--
|
||||
-- 13.1.4 Build 182 03/12/2014 SJ Web Edition
|
||||
-- ************************************************************
|
||||
|
||||
|
||||
--Copyright (C) 1991-2014 Altera Corporation
|
||||
--Your use of Altera Corporation's design tools, logic functions
|
||||
--and other software and tools, and its AMPP partner logic
|
||||
--functions, and any output files from any of the foregoing
|
||||
--(including device programming or simulation files), and any
|
||||
--associated documentation or information are expressly subject
|
||||
--to the terms and conditions of the Altera Program License
|
||||
--Subscription Agreement, Altera MegaCore Function License
|
||||
--Agreement, or other applicable license agreement, including,
|
||||
--without limitation, that your use is for the sole purpose of
|
||||
--programming logic devices manufactured by Altera and sold by
|
||||
--Altera or its authorized distributors. Please refer to the
|
||||
--applicable agreement for further details.
|
||||
|
||||
|
||||
LIBRARY ieee;
|
||||
USE ieee.std_logic_1164.all;
|
||||
|
||||
LIBRARY altera_mf;
|
||||
USE altera_mf.altera_mf_components.all;
|
||||
|
||||
ENTITY Char_LSB IS
|
||||
PORT
|
||||
(
|
||||
address : IN STD_LOGIC_VECTOR (8 DOWNTO 0);
|
||||
clock : IN STD_LOGIC := '1';
|
||||
q : OUT STD_LOGIC_VECTOR (3 DOWNTO 0)
|
||||
);
|
||||
END Char_LSB;
|
||||
|
||||
|
||||
ARCHITECTURE SYN OF char_lsb IS
|
||||
|
||||
SIGNAL sub_wire0 : STD_LOGIC_VECTOR (3 DOWNTO 0);
|
||||
|
||||
BEGIN
|
||||
q <= sub_wire0(3 DOWNTO 0);
|
||||
|
||||
altsyncram_component : altsyncram
|
||||
GENERIC MAP (
|
||||
clock_enable_input_a => "BYPASS",
|
||||
clock_enable_output_a => "BYPASS",
|
||||
init_file => "./rtl/roms/6396-01p4.hex",
|
||||
intended_device_family => "Cyclone II",
|
||||
lpm_hint => "ENABLE_RUNTIME_MOD=NO",
|
||||
lpm_type => "altsyncram",
|
||||
numwords_a => 512,
|
||||
operation_mode => "ROM",
|
||||
outdata_aclr_a => "NONE",
|
||||
outdata_reg_a => "CLOCK0",
|
||||
widthad_a => 9,
|
||||
width_a => 4,
|
||||
width_byteena_a => 1
|
||||
)
|
||||
PORT MAP (
|
||||
address_a => address,
|
||||
clock0 => clock,
|
||||
q_a => sub_wire0
|
||||
);
|
||||
|
||||
|
||||
|
||||
END SYN;
|
||||
|
||||
-- ============================================================
|
||||
-- CNX file retrieval info
|
||||
-- ============================================================
|
||||
-- Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrAddr NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrByte NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrOutput NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_ENABLE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: BlankMemory NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: Clken NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_A"
|
||||
-- Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
|
||||
-- Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: MIFfilename STRING "./rtl/roms/6396-01p4.hex"
|
||||
-- Retrieval info: PRIVATE: NUMWORDS_A NUMERIC "512"
|
||||
-- Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: RegAddr NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: RegOutput NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
|
||||
-- Retrieval info: PRIVATE: SingleClock NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: UseDQRAM NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: WidthAddr NUMERIC "9"
|
||||
-- Retrieval info: PRIVATE: WidthData NUMERIC "4"
|
||||
-- Retrieval info: PRIVATE: rden NUMERIC "0"
|
||||
-- Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: INIT_FILE STRING "./rtl/roms/6396-01p4.hex"
|
||||
-- Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: CONSTANT: LPM_HINT STRING "ENABLE_RUNTIME_MOD=NO"
|
||||
-- Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
|
||||
-- Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "512"
|
||||
-- Retrieval info: CONSTANT: OPERATION_MODE STRING "ROM"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_ACLR_A STRING "NONE"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_REG_A STRING "CLOCK0"
|
||||
-- Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "9"
|
||||
-- Retrieval info: CONSTANT: WIDTH_A NUMERIC "4"
|
||||
-- Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
|
||||
-- Retrieval info: USED_PORT: address 0 0 9 0 INPUT NODEFVAL "address[8..0]"
|
||||
-- Retrieval info: USED_PORT: clock 0 0 0 0 INPUT VCC "clock"
|
||||
-- Retrieval info: USED_PORT: q 0 0 4 0 OUTPUT NODEFVAL "q[3..0]"
|
||||
-- Retrieval info: CONNECT: @address_a 0 0 9 0 address 0 0 9 0
|
||||
-- Retrieval info: CONNECT: @clock0 0 0 0 0 clock 0 0 0 0
|
||||
-- Retrieval info: CONNECT: q 0 0 4 0 @q_a 0 0 4 0
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL Char_LSB.vhd TRUE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL Char_LSB.inc FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL Char_LSB.cmp FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL Char_LSB.bsf FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL Char_LSB_inst.vhd FALSE
|
||||
-- Retrieval info: LIB_FILE: altera_mf
|
||||
@@ -0,0 +1,3 @@
|
||||
set_global_assignment -name IP_TOOL_NAME "ROM: 1-PORT"
|
||||
set_global_assignment -name IP_TOOL_VERSION "13.1"
|
||||
set_global_assignment -name VHDL_FILE [file join $::quartus(qip_path) "Char_MSB.vhd"]
|
||||
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/Char_MSB.vhd
Normal file
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/Char_MSB.vhd
Normal file
@@ -0,0 +1,141 @@
|
||||
-- megafunction wizard: %ROM: 1-PORT%
|
||||
-- GENERATION: STANDARD
|
||||
-- VERSION: WM1.0
|
||||
-- MODULE: altsyncram
|
||||
|
||||
-- ============================================================
|
||||
-- File Name: Char_MSB.vhd
|
||||
-- Megafunction Name(s):
|
||||
-- altsyncram
|
||||
--
|
||||
-- Simulation Library Files(s):
|
||||
-- altera_mf
|
||||
-- ============================================================
|
||||
-- ************************************************************
|
||||
-- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
|
||||
--
|
||||
-- 13.1.4 Build 182 03/12/2014 SJ Web Edition
|
||||
-- ************************************************************
|
||||
|
||||
|
||||
--Copyright (C) 1991-2014 Altera Corporation
|
||||
--Your use of Altera Corporation's design tools, logic functions
|
||||
--and other software and tools, and its AMPP partner logic
|
||||
--functions, and any output files from any of the foregoing
|
||||
--(including device programming or simulation files), and any
|
||||
--associated documentation or information are expressly subject
|
||||
--to the terms and conditions of the Altera Program License
|
||||
--Subscription Agreement, Altera MegaCore Function License
|
||||
--Agreement, or other applicable license agreement, including,
|
||||
--without limitation, that your use is for the sole purpose of
|
||||
--programming logic devices manufactured by Altera and sold by
|
||||
--Altera or its authorized distributors. Please refer to the
|
||||
--applicable agreement for further details.
|
||||
|
||||
|
||||
LIBRARY ieee;
|
||||
USE ieee.std_logic_1164.all;
|
||||
|
||||
LIBRARY altera_mf;
|
||||
USE altera_mf.altera_mf_components.all;
|
||||
|
||||
ENTITY Char_MSB IS
|
||||
PORT
|
||||
(
|
||||
address : IN STD_LOGIC_VECTOR (8 DOWNTO 0);
|
||||
clock : IN STD_LOGIC := '1';
|
||||
q : OUT STD_LOGIC_VECTOR (3 DOWNTO 0)
|
||||
);
|
||||
END Char_MSB;
|
||||
|
||||
|
||||
ARCHITECTURE SYN OF char_msb IS
|
||||
|
||||
SIGNAL sub_wire0 : STD_LOGIC_VECTOR (3 DOWNTO 0);
|
||||
|
||||
BEGIN
|
||||
q <= sub_wire0(3 DOWNTO 0);
|
||||
|
||||
altsyncram_component : altsyncram
|
||||
GENERIC MAP (
|
||||
clock_enable_input_a => "BYPASS",
|
||||
clock_enable_output_a => "BYPASS",
|
||||
init_file => "./rtl/roms/6397-01r4.hex",
|
||||
intended_device_family => "Cyclone II",
|
||||
lpm_hint => "ENABLE_RUNTIME_MOD=NO",
|
||||
lpm_type => "altsyncram",
|
||||
numwords_a => 512,
|
||||
operation_mode => "ROM",
|
||||
outdata_aclr_a => "NONE",
|
||||
outdata_reg_a => "CLOCK0",
|
||||
widthad_a => 9,
|
||||
width_a => 4,
|
||||
width_byteena_a => 1
|
||||
)
|
||||
PORT MAP (
|
||||
address_a => address,
|
||||
clock0 => clock,
|
||||
q_a => sub_wire0
|
||||
);
|
||||
|
||||
|
||||
|
||||
END SYN;
|
||||
|
||||
-- ============================================================
|
||||
-- CNX file retrieval info
|
||||
-- ============================================================
|
||||
-- Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrAddr NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrByte NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrOutput NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_ENABLE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: BlankMemory NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: Clken NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_A"
|
||||
-- Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
|
||||
-- Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: MIFfilename STRING "./rtl/roms/6397-01r4.hex"
|
||||
-- Retrieval info: PRIVATE: NUMWORDS_A NUMERIC "512"
|
||||
-- Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: RegAddr NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: RegOutput NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
|
||||
-- Retrieval info: PRIVATE: SingleClock NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: UseDQRAM NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: WidthAddr NUMERIC "9"
|
||||
-- Retrieval info: PRIVATE: WidthData NUMERIC "4"
|
||||
-- Retrieval info: PRIVATE: rden NUMERIC "0"
|
||||
-- Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: INIT_FILE STRING "./rtl/roms/6397-01r4.hex"
|
||||
-- Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: CONSTANT: LPM_HINT STRING "ENABLE_RUNTIME_MOD=NO"
|
||||
-- Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
|
||||
-- Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "512"
|
||||
-- Retrieval info: CONSTANT: OPERATION_MODE STRING "ROM"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_ACLR_A STRING "NONE"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_REG_A STRING "CLOCK0"
|
||||
-- Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "9"
|
||||
-- Retrieval info: CONSTANT: WIDTH_A NUMERIC "4"
|
||||
-- Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
|
||||
-- Retrieval info: USED_PORT: address 0 0 9 0 INPUT NODEFVAL "address[8..0]"
|
||||
-- Retrieval info: USED_PORT: clock 0 0 0 0 INPUT VCC "clock"
|
||||
-- Retrieval info: USED_PORT: q 0 0 4 0 OUTPUT NODEFVAL "q[3..0]"
|
||||
-- Retrieval info: CONNECT: @address_a 0 0 9 0 address 0 0 9 0
|
||||
-- Retrieval info: CONNECT: @clock0 0 0 0 0 clock 0 0 0 0
|
||||
-- Retrieval info: CONNECT: q 0 0 4 0 @q_a 0 0 4 0
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL Char_MSB.vhd TRUE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL Char_MSB.inc FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL Char_MSB.cmp FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL Char_MSB.bsf FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL Char_MSB_inst.vhd FALSE
|
||||
-- Retrieval info: LIB_FILE: altera_mf
|
||||
@@ -0,0 +1,3 @@
|
||||
set_global_assignment -name IP_TOOL_NAME "ROM: 1-PORT"
|
||||
set_global_assignment -name IP_TOOL_VERSION "13.1"
|
||||
set_global_assignment -name VHDL_FILE [file join $::quartus(qip_path) "addec_prom.vhd"]
|
||||
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/addec_prom.vhd
Normal file
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/addec_prom.vhd
Normal file
@@ -0,0 +1,141 @@
|
||||
-- megafunction wizard: %ROM: 1-PORT%
|
||||
-- GENERATION: STANDARD
|
||||
-- VERSION: WM1.0
|
||||
-- MODULE: altsyncram
|
||||
|
||||
-- ============================================================
|
||||
-- File Name: addec_prom.vhd
|
||||
-- Megafunction Name(s):
|
||||
-- altsyncram
|
||||
--
|
||||
-- Simulation Library Files(s):
|
||||
-- altera_mf
|
||||
-- ============================================================
|
||||
-- ************************************************************
|
||||
-- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
|
||||
--
|
||||
-- 13.1.4 Build 182 03/12/2014 SJ Web Edition
|
||||
-- ************************************************************
|
||||
|
||||
|
||||
--Copyright (C) 1991-2014 Altera Corporation
|
||||
--Your use of Altera Corporation's design tools, logic functions
|
||||
--and other software and tools, and its AMPP partner logic
|
||||
--functions, and any output files from any of the foregoing
|
||||
--(including device programming or simulation files), and any
|
||||
--associated documentation or information are expressly subject
|
||||
--to the terms and conditions of the Altera Program License
|
||||
--Subscription Agreement, Altera MegaCore Function License
|
||||
--Agreement, or other applicable license agreement, including,
|
||||
--without limitation, that your use is for the sole purpose of
|
||||
--programming logic devices manufactured by Altera and sold by
|
||||
--Altera or its authorized distributors. Please refer to the
|
||||
--applicable agreement for further details.
|
||||
|
||||
|
||||
LIBRARY ieee;
|
||||
USE ieee.std_logic_1164.all;
|
||||
|
||||
LIBRARY altera_mf;
|
||||
USE altera_mf.altera_mf_components.all;
|
||||
|
||||
ENTITY addec_prom IS
|
||||
PORT
|
||||
(
|
||||
address : IN STD_LOGIC_VECTOR (4 DOWNTO 0);
|
||||
clock : IN STD_LOGIC := '1';
|
||||
q : OUT STD_LOGIC_VECTOR (7 DOWNTO 0)
|
||||
);
|
||||
END addec_prom;
|
||||
|
||||
|
||||
ARCHITECTURE SYN OF addec_prom IS
|
||||
|
||||
SIGNAL sub_wire0 : STD_LOGIC_VECTOR (7 DOWNTO 0);
|
||||
|
||||
BEGIN
|
||||
q <= sub_wire0(7 DOWNTO 0);
|
||||
|
||||
altsyncram_component : altsyncram
|
||||
GENERIC MAP (
|
||||
clock_enable_input_a => "BYPASS",
|
||||
clock_enable_output_a => "BYPASS",
|
||||
init_file => "./rtl/roms/6401-01e2.hex",
|
||||
intended_device_family => "Cyclone II",
|
||||
lpm_hint => "ENABLE_RUNTIME_MOD=NO",
|
||||
lpm_type => "altsyncram",
|
||||
numwords_a => 32,
|
||||
operation_mode => "ROM",
|
||||
outdata_aclr_a => "NONE",
|
||||
outdata_reg_a => "UNREGISTERED",
|
||||
widthad_a => 5,
|
||||
width_a => 8,
|
||||
width_byteena_a => 1
|
||||
)
|
||||
PORT MAP (
|
||||
address_a => address,
|
||||
clock0 => clock,
|
||||
q_a => sub_wire0
|
||||
);
|
||||
|
||||
|
||||
|
||||
END SYN;
|
||||
|
||||
-- ============================================================
|
||||
-- CNX file retrieval info
|
||||
-- ============================================================
|
||||
-- Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrAddr NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrByte NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrOutput NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_ENABLE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: BlankMemory NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: Clken NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_A"
|
||||
-- Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
|
||||
-- Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: MIFfilename STRING "./rtl/roms/6401-01e2.hex"
|
||||
-- Retrieval info: PRIVATE: NUMWORDS_A NUMERIC "32"
|
||||
-- Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: RegAddr NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: RegOutput NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
|
||||
-- Retrieval info: PRIVATE: SingleClock NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: UseDQRAM NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: WidthAddr NUMERIC "5"
|
||||
-- Retrieval info: PRIVATE: WidthData NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: rden NUMERIC "0"
|
||||
-- Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: INIT_FILE STRING "./rtl/roms/6401-01e2.hex"
|
||||
-- Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: CONSTANT: LPM_HINT STRING "ENABLE_RUNTIME_MOD=NO"
|
||||
-- Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
|
||||
-- Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "32"
|
||||
-- Retrieval info: CONSTANT: OPERATION_MODE STRING "ROM"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_ACLR_A STRING "NONE"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_REG_A STRING "UNREGISTERED"
|
||||
-- Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "5"
|
||||
-- Retrieval info: CONSTANT: WIDTH_A NUMERIC "8"
|
||||
-- Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
|
||||
-- Retrieval info: USED_PORT: address 0 0 5 0 INPUT NODEFVAL "address[4..0]"
|
||||
-- Retrieval info: USED_PORT: clock 0 0 0 0 INPUT VCC "clock"
|
||||
-- Retrieval info: USED_PORT: q 0 0 8 0 OUTPUT NODEFVAL "q[7..0]"
|
||||
-- Retrieval info: CONNECT: @address_a 0 0 5 0 address 0 0 5 0
|
||||
-- Retrieval info: CONNECT: @clock0 0 0 0 0 clock 0 0 0 0
|
||||
-- Retrieval info: CONNECT: q 0 0 8 0 @q_a 0 0 8 0
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL addec_prom.vhd TRUE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL addec_prom.inc FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL addec_prom.cmp FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL addec_prom.bsf FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL addec_prom_inst.vhd FALSE
|
||||
-- Retrieval info: LIB_FILE: altera_mf
|
||||
@@ -0,0 +1,3 @@
|
||||
set_global_assignment -name IP_TOOL_NAME "ROM: 1-PORT"
|
||||
set_global_assignment -name IP_TOOL_VERSION "13.1"
|
||||
set_global_assignment -name VHDL_FILE [file join $::quartus(qip_path) "j6_prom.vhd"]
|
||||
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/j6_prom.vhd
Normal file
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/j6_prom.vhd
Normal file
@@ -0,0 +1,141 @@
|
||||
-- megafunction wizard: %ROM: 1-PORT%
|
||||
-- GENERATION: STANDARD
|
||||
-- VERSION: WM1.0
|
||||
-- MODULE: altsyncram
|
||||
|
||||
-- ============================================================
|
||||
-- File Name: j6_prom.vhd
|
||||
-- Megafunction Name(s):
|
||||
-- altsyncram
|
||||
--
|
||||
-- Simulation Library Files(s):
|
||||
-- altera_mf
|
||||
-- ============================================================
|
||||
-- ************************************************************
|
||||
-- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
|
||||
--
|
||||
-- 13.1.4 Build 182 03/12/2014 SJ Web Edition
|
||||
-- ************************************************************
|
||||
|
||||
|
||||
--Copyright (C) 1991-2014 Altera Corporation
|
||||
--Your use of Altera Corporation's design tools, logic functions
|
||||
--and other software and tools, and its AMPP partner logic
|
||||
--functions, and any output files from any of the foregoing
|
||||
--(including device programming or simulation files), and any
|
||||
--associated documentation or information are expressly subject
|
||||
--to the terms and conditions of the Altera Program License
|
||||
--Subscription Agreement, Altera MegaCore Function License
|
||||
--Agreement, or other applicable license agreement, including,
|
||||
--without limitation, that your use is for the sole purpose of
|
||||
--programming logic devices manufactured by Altera and sold by
|
||||
--Altera or its authorized distributors. Please refer to the
|
||||
--applicable agreement for further details.
|
||||
|
||||
|
||||
LIBRARY ieee;
|
||||
USE ieee.std_logic_1164.all;
|
||||
|
||||
LIBRARY altera_mf;
|
||||
USE altera_mf.altera_mf_components.all;
|
||||
|
||||
ENTITY j6_prom IS
|
||||
PORT
|
||||
(
|
||||
address : IN STD_LOGIC_VECTOR (8 DOWNTO 0);
|
||||
clock : IN STD_LOGIC := '1';
|
||||
q : OUT STD_LOGIC_VECTOR (3 DOWNTO 0)
|
||||
);
|
||||
END j6_prom;
|
||||
|
||||
|
||||
ARCHITECTURE SYN OF j6_prom IS
|
||||
|
||||
SIGNAL sub_wire0 : STD_LOGIC_VECTOR (3 DOWNTO 0);
|
||||
|
||||
BEGIN
|
||||
q <= sub_wire0(3 DOWNTO 0);
|
||||
|
||||
altsyncram_component : altsyncram
|
||||
GENERIC MAP (
|
||||
clock_enable_input_a => "BYPASS",
|
||||
clock_enable_output_a => "BYPASS",
|
||||
init_file => "./rtl/roms/6399-01j6.hex",
|
||||
intended_device_family => "Cyclone II",
|
||||
lpm_hint => "ENABLE_RUNTIME_MOD=NO",
|
||||
lpm_type => "altsyncram",
|
||||
numwords_a => 512,
|
||||
operation_mode => "ROM",
|
||||
outdata_aclr_a => "NONE",
|
||||
outdata_reg_a => "CLOCK0",
|
||||
widthad_a => 9,
|
||||
width_a => 4,
|
||||
width_byteena_a => 1
|
||||
)
|
||||
PORT MAP (
|
||||
address_a => address,
|
||||
clock0 => clock,
|
||||
q_a => sub_wire0
|
||||
);
|
||||
|
||||
|
||||
|
||||
END SYN;
|
||||
|
||||
-- ============================================================
|
||||
-- CNX file retrieval info
|
||||
-- ============================================================
|
||||
-- Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrAddr NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrByte NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrOutput NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_ENABLE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: BlankMemory NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: Clken NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_A"
|
||||
-- Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
|
||||
-- Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: MIFfilename STRING "./rtl/roms/6399-01j6.hex"
|
||||
-- Retrieval info: PRIVATE: NUMWORDS_A NUMERIC "512"
|
||||
-- Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: RegAddr NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: RegOutput NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
|
||||
-- Retrieval info: PRIVATE: SingleClock NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: UseDQRAM NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: WidthAddr NUMERIC "9"
|
||||
-- Retrieval info: PRIVATE: WidthData NUMERIC "4"
|
||||
-- Retrieval info: PRIVATE: rden NUMERIC "0"
|
||||
-- Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: INIT_FILE STRING "./rtl/roms/6399-01j6.hex"
|
||||
-- Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: CONSTANT: LPM_HINT STRING "ENABLE_RUNTIME_MOD=NO"
|
||||
-- Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
|
||||
-- Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "512"
|
||||
-- Retrieval info: CONSTANT: OPERATION_MODE STRING "ROM"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_ACLR_A STRING "NONE"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_REG_A STRING "CLOCK0"
|
||||
-- Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "9"
|
||||
-- Retrieval info: CONSTANT: WIDTH_A NUMERIC "4"
|
||||
-- Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
|
||||
-- Retrieval info: USED_PORT: address 0 0 9 0 INPUT NODEFVAL "address[8..0]"
|
||||
-- Retrieval info: USED_PORT: clock 0 0 0 0 INPUT VCC "clock"
|
||||
-- Retrieval info: USED_PORT: q 0 0 4 0 OUTPUT NODEFVAL "q[3..0]"
|
||||
-- Retrieval info: CONNECT: @address_a 0 0 9 0 address 0 0 9 0
|
||||
-- Retrieval info: CONNECT: @clock0 0 0 0 0 clock 0 0 0 0
|
||||
-- Retrieval info: CONNECT: q 0 0 4 0 @q_a 0 0 4 0
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL j6_prom.vhd TRUE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL j6_prom.inc FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL j6_prom.cmp FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL j6_prom.bsf FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL j6_prom_inst.vhd FALSE
|
||||
-- Retrieval info: LIB_FILE: altera_mf
|
||||
@@ -0,0 +1,3 @@
|
||||
set_global_assignment -name IP_TOOL_NAME "ROM: 1-PORT"
|
||||
set_global_assignment -name IP_TOOL_VERSION "13.1"
|
||||
set_global_assignment -name VHDL_FILE [file join $::quartus(qip_path) "k6_prom.vhd"]
|
||||
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/k6_prom.vhd
Normal file
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/k6_prom.vhd
Normal file
@@ -0,0 +1,141 @@
|
||||
-- megafunction wizard: %ROM: 1-PORT%
|
||||
-- GENERATION: STANDARD
|
||||
-- VERSION: WM1.0
|
||||
-- MODULE: altsyncram
|
||||
|
||||
-- ============================================================
|
||||
-- File Name: k6_prom.vhd
|
||||
-- Megafunction Name(s):
|
||||
-- altsyncram
|
||||
--
|
||||
-- Simulation Library Files(s):
|
||||
-- altera_mf
|
||||
-- ============================================================
|
||||
-- ************************************************************
|
||||
-- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
|
||||
--
|
||||
-- 13.1.4 Build 182 03/12/2014 SJ Web Edition
|
||||
-- ************************************************************
|
||||
|
||||
|
||||
--Copyright (C) 1991-2014 Altera Corporation
|
||||
--Your use of Altera Corporation's design tools, logic functions
|
||||
--and other software and tools, and its AMPP partner logic
|
||||
--functions, and any output files from any of the foregoing
|
||||
--(including device programming or simulation files), and any
|
||||
--associated documentation or information are expressly subject
|
||||
--to the terms and conditions of the Altera Program License
|
||||
--Subscription Agreement, Altera MegaCore Function License
|
||||
--Agreement, or other applicable license agreement, including,
|
||||
--without limitation, that your use is for the sole purpose of
|
||||
--programming logic devices manufactured by Altera and sold by
|
||||
--Altera or its authorized distributors. Please refer to the
|
||||
--applicable agreement for further details.
|
||||
|
||||
|
||||
LIBRARY ieee;
|
||||
USE ieee.std_logic_1164.all;
|
||||
|
||||
LIBRARY altera_mf;
|
||||
USE altera_mf.altera_mf_components.all;
|
||||
|
||||
ENTITY k6_prom IS
|
||||
PORT
|
||||
(
|
||||
address : IN STD_LOGIC_VECTOR (8 DOWNTO 0);
|
||||
clock : IN STD_LOGIC := '1';
|
||||
q : OUT STD_LOGIC_VECTOR (3 DOWNTO 0)
|
||||
);
|
||||
END k6_prom;
|
||||
|
||||
|
||||
ARCHITECTURE SYN OF k6_prom IS
|
||||
|
||||
SIGNAL sub_wire0 : STD_LOGIC_VECTOR (3 DOWNTO 0);
|
||||
|
||||
BEGIN
|
||||
q <= sub_wire0(3 DOWNTO 0);
|
||||
|
||||
altsyncram_component : altsyncram
|
||||
GENERIC MAP (
|
||||
clock_enable_input_a => "BYPASS",
|
||||
clock_enable_output_a => "BYPASS",
|
||||
init_file => "./rtl/roms/6398-01k6.hex",
|
||||
intended_device_family => "Cyclone II",
|
||||
lpm_hint => "ENABLE_RUNTIME_MOD=NO",
|
||||
lpm_type => "altsyncram",
|
||||
numwords_a => 512,
|
||||
operation_mode => "ROM",
|
||||
outdata_aclr_a => "NONE",
|
||||
outdata_reg_a => "CLOCK0",
|
||||
widthad_a => 9,
|
||||
width_a => 4,
|
||||
width_byteena_a => 1
|
||||
)
|
||||
PORT MAP (
|
||||
address_a => address,
|
||||
clock0 => clock,
|
||||
q_a => sub_wire0
|
||||
);
|
||||
|
||||
|
||||
|
||||
END SYN;
|
||||
|
||||
-- ============================================================
|
||||
-- CNX file retrieval info
|
||||
-- ============================================================
|
||||
-- Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrAddr NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrByte NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrOutput NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_ENABLE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: BlankMemory NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: Clken NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_A"
|
||||
-- Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
|
||||
-- Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: MIFfilename STRING "./rtl/roms/6398-01k6.hex"
|
||||
-- Retrieval info: PRIVATE: NUMWORDS_A NUMERIC "512"
|
||||
-- Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: RegAddr NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: RegOutput NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
|
||||
-- Retrieval info: PRIVATE: SingleClock NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: UseDQRAM NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: WidthAddr NUMERIC "9"
|
||||
-- Retrieval info: PRIVATE: WidthData NUMERIC "4"
|
||||
-- Retrieval info: PRIVATE: rden NUMERIC "0"
|
||||
-- Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: INIT_FILE STRING "./rtl/roms/6398-01k6.hex"
|
||||
-- Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: CONSTANT: LPM_HINT STRING "ENABLE_RUNTIME_MOD=NO"
|
||||
-- Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
|
||||
-- Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "512"
|
||||
-- Retrieval info: CONSTANT: OPERATION_MODE STRING "ROM"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_ACLR_A STRING "NONE"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_REG_A STRING "CLOCK0"
|
||||
-- Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "9"
|
||||
-- Retrieval info: CONSTANT: WIDTH_A NUMERIC "4"
|
||||
-- Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
|
||||
-- Retrieval info: USED_PORT: address 0 0 9 0 INPUT NODEFVAL "address[8..0]"
|
||||
-- Retrieval info: USED_PORT: clock 0 0 0 0 INPUT VCC "clock"
|
||||
-- Retrieval info: USED_PORT: q 0 0 4 0 OUTPUT NODEFVAL "q[3..0]"
|
||||
-- Retrieval info: CONNECT: @address_a 0 0 9 0 address 0 0 9 0
|
||||
-- Retrieval info: CONNECT: @clock0 0 0 0 0 clock 0 0 0 0
|
||||
-- Retrieval info: CONNECT: q 0 0 4 0 @q_a 0 0 4 0
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL k6_prom.vhd TRUE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL k6_prom.inc FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL k6_prom.cmp FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL k6_prom.bsf FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL k6_prom_inst.vhd FALSE
|
||||
-- Retrieval info: LIB_FILE: altera_mf
|
||||
@@ -0,0 +1,3 @@
|
||||
set_global_assignment -name IP_TOOL_NAME "ROM: 1-PORT"
|
||||
set_global_assignment -name IP_TOOL_VERSION "13.1"
|
||||
set_global_assignment -name VHDL_FILE [file join $::quartus(qip_path) "prog_rom1.vhd"]
|
||||
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/prog_rom1.vhd
Normal file
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/prog_rom1.vhd
Normal file
@@ -0,0 +1,141 @@
|
||||
-- megafunction wizard: %ROM: 1-PORT%
|
||||
-- GENERATION: STANDARD
|
||||
-- VERSION: WM1.0
|
||||
-- MODULE: altsyncram
|
||||
|
||||
-- ============================================================
|
||||
-- File Name: prog_rom1.vhd
|
||||
-- Megafunction Name(s):
|
||||
-- altsyncram
|
||||
--
|
||||
-- Simulation Library Files(s):
|
||||
-- altera_mf
|
||||
-- ============================================================
|
||||
-- ************************************************************
|
||||
-- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
|
||||
--
|
||||
-- 13.1.4 Build 182 03/12/2014 SJ Web Edition
|
||||
-- ************************************************************
|
||||
|
||||
|
||||
--Copyright (C) 1991-2014 Altera Corporation
|
||||
--Your use of Altera Corporation's design tools, logic functions
|
||||
--and other software and tools, and its AMPP partner logic
|
||||
--functions, and any output files from any of the foregoing
|
||||
--(including device programming or simulation files), and any
|
||||
--associated documentation or information are expressly subject
|
||||
--to the terms and conditions of the Altera Program License
|
||||
--Subscription Agreement, Altera MegaCore Function License
|
||||
--Agreement, or other applicable license agreement, including,
|
||||
--without limitation, that your use is for the sole purpose of
|
||||
--programming logic devices manufactured by Altera and sold by
|
||||
--Altera or its authorized distributors. Please refer to the
|
||||
--applicable agreement for further details.
|
||||
|
||||
|
||||
LIBRARY ieee;
|
||||
USE ieee.std_logic_1164.all;
|
||||
|
||||
LIBRARY altera_mf;
|
||||
USE altera_mf.altera_mf_components.all;
|
||||
|
||||
ENTITY prog_rom1 IS
|
||||
PORT
|
||||
(
|
||||
address : IN STD_LOGIC_VECTOR (10 DOWNTO 0);
|
||||
clock : IN STD_LOGIC := '1';
|
||||
q : OUT STD_LOGIC_VECTOR (7 DOWNTO 0)
|
||||
);
|
||||
END prog_rom1;
|
||||
|
||||
|
||||
ARCHITECTURE SYN OF prog_rom1 IS
|
||||
|
||||
SIGNAL sub_wire0 : STD_LOGIC_VECTOR (7 DOWNTO 0);
|
||||
|
||||
BEGIN
|
||||
q <= sub_wire0(7 DOWNTO 0);
|
||||
|
||||
altsyncram_component : altsyncram
|
||||
GENERIC MAP (
|
||||
clock_enable_input_a => "BYPASS",
|
||||
clock_enable_output_a => "BYPASS",
|
||||
init_file => "./rtl/roms/6290-01b1.hex",
|
||||
intended_device_family => "Cyclone II",
|
||||
lpm_hint => "ENABLE_RUNTIME_MOD=NO",
|
||||
lpm_type => "altsyncram",
|
||||
numwords_a => 2048,
|
||||
operation_mode => "ROM",
|
||||
outdata_aclr_a => "NONE",
|
||||
outdata_reg_a => "CLOCK0",
|
||||
widthad_a => 11,
|
||||
width_a => 8,
|
||||
width_byteena_a => 1
|
||||
)
|
||||
PORT MAP (
|
||||
address_a => address,
|
||||
clock0 => clock,
|
||||
q_a => sub_wire0
|
||||
);
|
||||
|
||||
|
||||
|
||||
END SYN;
|
||||
|
||||
-- ============================================================
|
||||
-- CNX file retrieval info
|
||||
-- ============================================================
|
||||
-- Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrAddr NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrByte NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrOutput NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_ENABLE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: BlankMemory NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: Clken NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_A"
|
||||
-- Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
|
||||
-- Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: MIFfilename STRING "./rtl/roms/6290-01b1.hex"
|
||||
-- Retrieval info: PRIVATE: NUMWORDS_A NUMERIC "2048"
|
||||
-- Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: RegAddr NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: RegOutput NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
|
||||
-- Retrieval info: PRIVATE: SingleClock NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: UseDQRAM NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: WidthAddr NUMERIC "11"
|
||||
-- Retrieval info: PRIVATE: WidthData NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: rden NUMERIC "0"
|
||||
-- Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: INIT_FILE STRING "./rtl/roms/6290-01b1.hex"
|
||||
-- Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: CONSTANT: LPM_HINT STRING "ENABLE_RUNTIME_MOD=NO"
|
||||
-- Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
|
||||
-- Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "2048"
|
||||
-- Retrieval info: CONSTANT: OPERATION_MODE STRING "ROM"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_ACLR_A STRING "NONE"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_REG_A STRING "CLOCK0"
|
||||
-- Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "11"
|
||||
-- Retrieval info: CONSTANT: WIDTH_A NUMERIC "8"
|
||||
-- Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
|
||||
-- Retrieval info: USED_PORT: address 0 0 11 0 INPUT NODEFVAL "address[10..0]"
|
||||
-- Retrieval info: USED_PORT: clock 0 0 0 0 INPUT VCC "clock"
|
||||
-- Retrieval info: USED_PORT: q 0 0 8 0 OUTPUT NODEFVAL "q[7..0]"
|
||||
-- Retrieval info: CONNECT: @address_a 0 0 11 0 address 0 0 11 0
|
||||
-- Retrieval info: CONNECT: @clock0 0 0 0 0 clock 0 0 0 0
|
||||
-- Retrieval info: CONNECT: q 0 0 8 0 @q_a 0 0 8 0
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom1.vhd TRUE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom1.inc FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom1.cmp FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom1.bsf FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom1_inst.vhd FALSE
|
||||
-- Retrieval info: LIB_FILE: altera_mf
|
||||
@@ -0,0 +1,3 @@
|
||||
set_global_assignment -name IP_TOOL_NAME "ROM: 1-PORT"
|
||||
set_global_assignment -name IP_TOOL_VERSION "13.1"
|
||||
set_global_assignment -name VHDL_FILE [file join $::quartus(qip_path) "prog_rom2.vhd"]
|
||||
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/prog_rom2.vhd
Normal file
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/prog_rom2.vhd
Normal file
@@ -0,0 +1,141 @@
|
||||
-- megafunction wizard: %ROM: 1-PORT%
|
||||
-- GENERATION: STANDARD
|
||||
-- VERSION: WM1.0
|
||||
-- MODULE: altsyncram
|
||||
|
||||
-- ============================================================
|
||||
-- File Name: prog_rom2.vhd
|
||||
-- Megafunction Name(s):
|
||||
-- altsyncram
|
||||
--
|
||||
-- Simulation Library Files(s):
|
||||
-- altera_mf
|
||||
-- ============================================================
|
||||
-- ************************************************************
|
||||
-- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
|
||||
--
|
||||
-- 13.1.4 Build 182 03/12/2014 SJ Web Edition
|
||||
-- ************************************************************
|
||||
|
||||
|
||||
--Copyright (C) 1991-2014 Altera Corporation
|
||||
--Your use of Altera Corporation's design tools, logic functions
|
||||
--and other software and tools, and its AMPP partner logic
|
||||
--functions, and any output files from any of the foregoing
|
||||
--(including device programming or simulation files), and any
|
||||
--associated documentation or information are expressly subject
|
||||
--to the terms and conditions of the Altera Program License
|
||||
--Subscription Agreement, Altera MegaCore Function License
|
||||
--Agreement, or other applicable license agreement, including,
|
||||
--without limitation, that your use is for the sole purpose of
|
||||
--programming logic devices manufactured by Altera and sold by
|
||||
--Altera or its authorized distributors. Please refer to the
|
||||
--applicable agreement for further details.
|
||||
|
||||
|
||||
LIBRARY ieee;
|
||||
USE ieee.std_logic_1164.all;
|
||||
|
||||
LIBRARY altera_mf;
|
||||
USE altera_mf.altera_mf_components.all;
|
||||
|
||||
ENTITY prog_rom2 IS
|
||||
PORT
|
||||
(
|
||||
address : IN STD_LOGIC_VECTOR (10 DOWNTO 0);
|
||||
clock : IN STD_LOGIC := '1';
|
||||
q : OUT STD_LOGIC_VECTOR (7 DOWNTO 0)
|
||||
);
|
||||
END prog_rom2;
|
||||
|
||||
|
||||
ARCHITECTURE SYN OF prog_rom2 IS
|
||||
|
||||
SIGNAL sub_wire0 : STD_LOGIC_VECTOR (7 DOWNTO 0);
|
||||
|
||||
BEGIN
|
||||
q <= sub_wire0(7 DOWNTO 0);
|
||||
|
||||
altsyncram_component : altsyncram
|
||||
GENERIC MAP (
|
||||
clock_enable_input_a => "BYPASS",
|
||||
clock_enable_output_a => "BYPASS",
|
||||
init_file => "./rtl/roms/6291-01c1.hex",
|
||||
intended_device_family => "Cyclone II",
|
||||
lpm_hint => "ENABLE_RUNTIME_MOD=NO",
|
||||
lpm_type => "altsyncram",
|
||||
numwords_a => 2048,
|
||||
operation_mode => "ROM",
|
||||
outdata_aclr_a => "NONE",
|
||||
outdata_reg_a => "CLOCK0",
|
||||
widthad_a => 11,
|
||||
width_a => 8,
|
||||
width_byteena_a => 1
|
||||
)
|
||||
PORT MAP (
|
||||
address_a => address,
|
||||
clock0 => clock,
|
||||
q_a => sub_wire0
|
||||
);
|
||||
|
||||
|
||||
|
||||
END SYN;
|
||||
|
||||
-- ============================================================
|
||||
-- CNX file retrieval info
|
||||
-- ============================================================
|
||||
-- Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrAddr NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrByte NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrOutput NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_ENABLE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: BlankMemory NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: Clken NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_A"
|
||||
-- Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
|
||||
-- Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: MIFfilename STRING "./rtl/roms/6291-01c1.hex"
|
||||
-- Retrieval info: PRIVATE: NUMWORDS_A NUMERIC "2048"
|
||||
-- Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: RegAddr NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: RegOutput NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
|
||||
-- Retrieval info: PRIVATE: SingleClock NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: UseDQRAM NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: WidthAddr NUMERIC "11"
|
||||
-- Retrieval info: PRIVATE: WidthData NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: rden NUMERIC "0"
|
||||
-- Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: INIT_FILE STRING "./rtl/roms/6291-01c1.hex"
|
||||
-- Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: CONSTANT: LPM_HINT STRING "ENABLE_RUNTIME_MOD=NO"
|
||||
-- Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
|
||||
-- Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "2048"
|
||||
-- Retrieval info: CONSTANT: OPERATION_MODE STRING "ROM"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_ACLR_A STRING "NONE"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_REG_A STRING "CLOCK0"
|
||||
-- Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "11"
|
||||
-- Retrieval info: CONSTANT: WIDTH_A NUMERIC "8"
|
||||
-- Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
|
||||
-- Retrieval info: USED_PORT: address 0 0 11 0 INPUT NODEFVAL "address[10..0]"
|
||||
-- Retrieval info: USED_PORT: clock 0 0 0 0 INPUT VCC "clock"
|
||||
-- Retrieval info: USED_PORT: q 0 0 8 0 OUTPUT NODEFVAL "q[7..0]"
|
||||
-- Retrieval info: CONNECT: @address_a 0 0 11 0 address 0 0 11 0
|
||||
-- Retrieval info: CONNECT: @clock0 0 0 0 0 clock 0 0 0 0
|
||||
-- Retrieval info: CONNECT: q 0 0 8 0 @q_a 0 0 8 0
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom2.vhd TRUE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom2.inc FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom2.cmp FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom2.bsf FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom2_inst.vhd FALSE
|
||||
-- Retrieval info: LIB_FILE: altera_mf
|
||||
@@ -0,0 +1,3 @@
|
||||
set_global_assignment -name IP_TOOL_NAME "ROM: 1-PORT"
|
||||
set_global_assignment -name IP_TOOL_VERSION "13.1"
|
||||
set_global_assignment -name VHDL_FILE [file join $::quartus(qip_path) "prog_rom3.vhd"]
|
||||
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/prog_rom3.vhd
Normal file
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/prog_rom3.vhd
Normal file
@@ -0,0 +1,141 @@
|
||||
-- megafunction wizard: %ROM: 1-PORT%
|
||||
-- GENERATION: STANDARD
|
||||
-- VERSION: WM1.0
|
||||
-- MODULE: altsyncram
|
||||
|
||||
-- ============================================================
|
||||
-- File Name: prog_rom3.vhd
|
||||
-- Megafunction Name(s):
|
||||
-- altsyncram
|
||||
--
|
||||
-- Simulation Library Files(s):
|
||||
-- altera_mf
|
||||
-- ============================================================
|
||||
-- ************************************************************
|
||||
-- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
|
||||
--
|
||||
-- 13.1.4 Build 182 03/12/2014 SJ Web Edition
|
||||
-- ************************************************************
|
||||
|
||||
|
||||
--Copyright (C) 1991-2014 Altera Corporation
|
||||
--Your use of Altera Corporation's design tools, logic functions
|
||||
--and other software and tools, and its AMPP partner logic
|
||||
--functions, and any output files from any of the foregoing
|
||||
--(including device programming or simulation files), and any
|
||||
--associated documentation or information are expressly subject
|
||||
--to the terms and conditions of the Altera Program License
|
||||
--Subscription Agreement, Altera MegaCore Function License
|
||||
--Agreement, or other applicable license agreement, including,
|
||||
--without limitation, that your use is for the sole purpose of
|
||||
--programming logic devices manufactured by Altera and sold by
|
||||
--Altera or its authorized distributors. Please refer to the
|
||||
--applicable agreement for further details.
|
||||
|
||||
|
||||
LIBRARY ieee;
|
||||
USE ieee.std_logic_1164.all;
|
||||
|
||||
LIBRARY altera_mf;
|
||||
USE altera_mf.altera_mf_components.all;
|
||||
|
||||
ENTITY prog_rom3 IS
|
||||
PORT
|
||||
(
|
||||
address : IN STD_LOGIC_VECTOR (10 DOWNTO 0);
|
||||
clock : IN STD_LOGIC := '1';
|
||||
q : OUT STD_LOGIC_VECTOR (7 DOWNTO 0)
|
||||
);
|
||||
END prog_rom3;
|
||||
|
||||
|
||||
ARCHITECTURE SYN OF prog_rom3 IS
|
||||
|
||||
SIGNAL sub_wire0 : STD_LOGIC_VECTOR (7 DOWNTO 0);
|
||||
|
||||
BEGIN
|
||||
q <= sub_wire0(7 DOWNTO 0);
|
||||
|
||||
altsyncram_component : altsyncram
|
||||
GENERIC MAP (
|
||||
clock_enable_input_a => "BYPASS",
|
||||
clock_enable_output_a => "BYPASS",
|
||||
init_file => "./rtl/roms/6404d1.hex",
|
||||
intended_device_family => "Cyclone II",
|
||||
lpm_hint => "ENABLE_RUNTIME_MOD=NO",
|
||||
lpm_type => "altsyncram",
|
||||
numwords_a => 2048,
|
||||
operation_mode => "ROM",
|
||||
outdata_aclr_a => "NONE",
|
||||
outdata_reg_a => "CLOCK0",
|
||||
widthad_a => 11,
|
||||
width_a => 8,
|
||||
width_byteena_a => 1
|
||||
)
|
||||
PORT MAP (
|
||||
address_a => address,
|
||||
clock0 => clock,
|
||||
q_a => sub_wire0
|
||||
);
|
||||
|
||||
|
||||
|
||||
END SYN;
|
||||
|
||||
-- ============================================================
|
||||
-- CNX file retrieval info
|
||||
-- ============================================================
|
||||
-- Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrAddr NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrByte NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrOutput NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_ENABLE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: BlankMemory NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: Clken NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_A"
|
||||
-- Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
|
||||
-- Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: MIFfilename STRING "./rtl/roms/6404d1.hex"
|
||||
-- Retrieval info: PRIVATE: NUMWORDS_A NUMERIC "2048"
|
||||
-- Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: RegAddr NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: RegOutput NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
|
||||
-- Retrieval info: PRIVATE: SingleClock NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: UseDQRAM NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: WidthAddr NUMERIC "11"
|
||||
-- Retrieval info: PRIVATE: WidthData NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: rden NUMERIC "0"
|
||||
-- Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: INIT_FILE STRING "./rtl/roms/6404d1.hex"
|
||||
-- Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: CONSTANT: LPM_HINT STRING "ENABLE_RUNTIME_MOD=NO"
|
||||
-- Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
|
||||
-- Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "2048"
|
||||
-- Retrieval info: CONSTANT: OPERATION_MODE STRING "ROM"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_ACLR_A STRING "NONE"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_REG_A STRING "CLOCK0"
|
||||
-- Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "11"
|
||||
-- Retrieval info: CONSTANT: WIDTH_A NUMERIC "8"
|
||||
-- Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
|
||||
-- Retrieval info: USED_PORT: address 0 0 11 0 INPUT NODEFVAL "address[10..0]"
|
||||
-- Retrieval info: USED_PORT: clock 0 0 0 0 INPUT VCC "clock"
|
||||
-- Retrieval info: USED_PORT: q 0 0 8 0 OUTPUT NODEFVAL "q[7..0]"
|
||||
-- Retrieval info: CONNECT: @address_a 0 0 11 0 address 0 0 11 0
|
||||
-- Retrieval info: CONNECT: @clock0 0 0 0 0 clock 0 0 0 0
|
||||
-- Retrieval info: CONNECT: q 0 0 8 0 @q_a 0 0 8 0
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom3.vhd TRUE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom3.inc FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom3.cmp FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom3.bsf FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom3_inst.vhd FALSE
|
||||
-- Retrieval info: LIB_FILE: altera_mf
|
||||
@@ -0,0 +1,3 @@
|
||||
set_global_assignment -name IP_TOOL_NAME "ROM: 1-PORT"
|
||||
set_global_assignment -name IP_TOOL_VERSION "13.1"
|
||||
set_global_assignment -name VHDL_FILE [file join $::quartus(qip_path) "prog_rom4.vhd"]
|
||||
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/prog_rom4.vhd
Normal file
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/prog_rom4.vhd
Normal file
@@ -0,0 +1,141 @@
|
||||
-- megafunction wizard: %ROM: 1-PORT%
|
||||
-- GENERATION: STANDARD
|
||||
-- VERSION: WM1.0
|
||||
-- MODULE: altsyncram
|
||||
|
||||
-- ============================================================
|
||||
-- File Name: prog_rom4.vhd
|
||||
-- Megafunction Name(s):
|
||||
-- altsyncram
|
||||
--
|
||||
-- Simulation Library Files(s):
|
||||
-- altera_mf
|
||||
-- ============================================================
|
||||
-- ************************************************************
|
||||
-- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
|
||||
--
|
||||
-- 13.1.4 Build 182 03/12/2014 SJ Web Edition
|
||||
-- ************************************************************
|
||||
|
||||
|
||||
--Copyright (C) 1991-2014 Altera Corporation
|
||||
--Your use of Altera Corporation's design tools, logic functions
|
||||
--and other software and tools, and its AMPP partner logic
|
||||
--functions, and any output files from any of the foregoing
|
||||
--(including device programming or simulation files), and any
|
||||
--associated documentation or information are expressly subject
|
||||
--to the terms and conditions of the Altera Program License
|
||||
--Subscription Agreement, Altera MegaCore Function License
|
||||
--Agreement, or other applicable license agreement, including,
|
||||
--without limitation, that your use is for the sole purpose of
|
||||
--programming logic devices manufactured by Altera and sold by
|
||||
--Altera or its authorized distributors. Please refer to the
|
||||
--applicable agreement for further details.
|
||||
|
||||
|
||||
LIBRARY ieee;
|
||||
USE ieee.std_logic_1164.all;
|
||||
|
||||
LIBRARY altera_mf;
|
||||
USE altera_mf.altera_mf_components.all;
|
||||
|
||||
ENTITY prog_rom4 IS
|
||||
PORT
|
||||
(
|
||||
address : IN STD_LOGIC_VECTOR (10 DOWNTO 0);
|
||||
clock : IN STD_LOGIC := '1';
|
||||
q : OUT STD_LOGIC_VECTOR (7 DOWNTO 0)
|
||||
);
|
||||
END prog_rom4;
|
||||
|
||||
|
||||
ARCHITECTURE SYN OF prog_rom4 IS
|
||||
|
||||
SIGNAL sub_wire0 : STD_LOGIC_VECTOR (7 DOWNTO 0);
|
||||
|
||||
BEGIN
|
||||
q <= sub_wire0(7 DOWNTO 0);
|
||||
|
||||
altsyncram_component : altsyncram
|
||||
GENERIC MAP (
|
||||
clock_enable_input_a => "BYPASS",
|
||||
clock_enable_output_a => "BYPASS",
|
||||
init_file => "./rtl/roms/6405-02e1.hex",
|
||||
intended_device_family => "Cyclone II",
|
||||
lpm_hint => "ENABLE_RUNTIME_MOD=NO",
|
||||
lpm_type => "altsyncram",
|
||||
numwords_a => 2048,
|
||||
operation_mode => "ROM",
|
||||
outdata_aclr_a => "NONE",
|
||||
outdata_reg_a => "CLOCK0",
|
||||
widthad_a => 11,
|
||||
width_a => 8,
|
||||
width_byteena_a => 1
|
||||
)
|
||||
PORT MAP (
|
||||
address_a => address,
|
||||
clock0 => clock,
|
||||
q_a => sub_wire0
|
||||
);
|
||||
|
||||
|
||||
|
||||
END SYN;
|
||||
|
||||
-- ============================================================
|
||||
-- CNX file retrieval info
|
||||
-- ============================================================
|
||||
-- Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrAddr NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrByte NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrOutput NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_ENABLE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: BlankMemory NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: Clken NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_A"
|
||||
-- Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
|
||||
-- Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: MIFfilename STRING "./rtl/roms/6405-02e1.hex"
|
||||
-- Retrieval info: PRIVATE: NUMWORDS_A NUMERIC "2048"
|
||||
-- Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: RegAddr NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: RegOutput NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
|
||||
-- Retrieval info: PRIVATE: SingleClock NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: UseDQRAM NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: WidthAddr NUMERIC "11"
|
||||
-- Retrieval info: PRIVATE: WidthData NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: rden NUMERIC "0"
|
||||
-- Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: INIT_FILE STRING "./rtl/roms/6405-02e1.hex"
|
||||
-- Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: CONSTANT: LPM_HINT STRING "ENABLE_RUNTIME_MOD=NO"
|
||||
-- Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
|
||||
-- Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "2048"
|
||||
-- Retrieval info: CONSTANT: OPERATION_MODE STRING "ROM"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_ACLR_A STRING "NONE"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_REG_A STRING "CLOCK0"
|
||||
-- Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "11"
|
||||
-- Retrieval info: CONSTANT: WIDTH_A NUMERIC "8"
|
||||
-- Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
|
||||
-- Retrieval info: USED_PORT: address 0 0 11 0 INPUT NODEFVAL "address[10..0]"
|
||||
-- Retrieval info: USED_PORT: clock 0 0 0 0 INPUT VCC "clock"
|
||||
-- Retrieval info: USED_PORT: q 0 0 8 0 OUTPUT NODEFVAL "q[7..0]"
|
||||
-- Retrieval info: CONNECT: @address_a 0 0 11 0 address 0 0 11 0
|
||||
-- Retrieval info: CONNECT: @clock0 0 0 0 0 clock 0 0 0 0
|
||||
-- Retrieval info: CONNECT: q 0 0 8 0 @q_a 0 0 8 0
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom4.vhd TRUE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom4.inc FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom4.cmp FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom4.bsf FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL prog_rom4_inst.vhd FALSE
|
||||
-- Retrieval info: LIB_FILE: altera_mf
|
||||
@@ -0,0 +1,3 @@
|
||||
set_global_assignment -name IP_TOOL_NAME "ROM: 1-PORT"
|
||||
set_global_assignment -name IP_TOOL_VERSION "13.1"
|
||||
set_global_assignment -name VHDL_FILE [file join $::quartus(qip_path) "sync_prom.vhd"]
|
||||
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/sync_prom.vhd
Normal file
141
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/roms/sync_prom.vhd
Normal file
@@ -0,0 +1,141 @@
|
||||
-- megafunction wizard: %ROM: 1-PORT%
|
||||
-- GENERATION: STANDARD
|
||||
-- VERSION: WM1.0
|
||||
-- MODULE: altsyncram
|
||||
|
||||
-- ============================================================
|
||||
-- File Name: sync_prom.vhd
|
||||
-- Megafunction Name(s):
|
||||
-- altsyncram
|
||||
--
|
||||
-- Simulation Library Files(s):
|
||||
-- altera_mf
|
||||
-- ============================================================
|
||||
-- ************************************************************
|
||||
-- THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
|
||||
--
|
||||
-- 13.1.4 Build 182 03/12/2014 SJ Web Edition
|
||||
-- ************************************************************
|
||||
|
||||
|
||||
--Copyright (C) 1991-2014 Altera Corporation
|
||||
--Your use of Altera Corporation's design tools, logic functions
|
||||
--and other software and tools, and its AMPP partner logic
|
||||
--functions, and any output files from any of the foregoing
|
||||
--(including device programming or simulation files), and any
|
||||
--associated documentation or information are expressly subject
|
||||
--to the terms and conditions of the Altera Program License
|
||||
--Subscription Agreement, Altera MegaCore Function License
|
||||
--Agreement, or other applicable license agreement, including,
|
||||
--without limitation, that your use is for the sole purpose of
|
||||
--programming logic devices manufactured by Altera and sold by
|
||||
--Altera or its authorized distributors. Please refer to the
|
||||
--applicable agreement for further details.
|
||||
|
||||
|
||||
LIBRARY ieee;
|
||||
USE ieee.std_logic_1164.all;
|
||||
|
||||
LIBRARY altera_mf;
|
||||
USE altera_mf.altera_mf_components.all;
|
||||
|
||||
ENTITY sync_prom IS
|
||||
PORT
|
||||
(
|
||||
address : IN STD_LOGIC_VECTOR (7 DOWNTO 0);
|
||||
clock : IN STD_LOGIC := '1';
|
||||
q : OUT STD_LOGIC_VECTOR (3 DOWNTO 0)
|
||||
);
|
||||
END sync_prom;
|
||||
|
||||
|
||||
ARCHITECTURE SYN OF sync_prom IS
|
||||
|
||||
SIGNAL sub_wire0 : STD_LOGIC_VECTOR (3 DOWNTO 0);
|
||||
|
||||
BEGIN
|
||||
q <= sub_wire0(3 DOWNTO 0);
|
||||
|
||||
altsyncram_component : altsyncram
|
||||
GENERIC MAP (
|
||||
clock_enable_input_a => "BYPASS",
|
||||
clock_enable_output_a => "BYPASS",
|
||||
init_file => "./rtl/roms/6400-01m2.hex",
|
||||
intended_device_family => "Cyclone II",
|
||||
lpm_hint => "ENABLE_RUNTIME_MOD=NO",
|
||||
lpm_type => "altsyncram",
|
||||
numwords_a => 256,
|
||||
operation_mode => "ROM",
|
||||
outdata_aclr_a => "NONE",
|
||||
outdata_reg_a => "UNREGISTERED",
|
||||
widthad_a => 8,
|
||||
width_a => 4,
|
||||
width_byteena_a => 1
|
||||
)
|
||||
PORT MAP (
|
||||
address_a => address,
|
||||
clock0 => clock,
|
||||
q_a => sub_wire0
|
||||
);
|
||||
|
||||
|
||||
|
||||
END SYN;
|
||||
|
||||
-- ============================================================
|
||||
-- CNX file retrieval info
|
||||
-- ============================================================
|
||||
-- Retrieval info: PRIVATE: ADDRESSSTALL_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrAddr NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrByte NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: AclrOutput NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_ENABLE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: BYTE_SIZE NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: BlankMemory NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_INPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: CLOCK_ENABLE_OUTPUT_A NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: Clken NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: IMPLEMENT_IN_LES NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INIT_FILE_LAYOUT STRING "PORT_A"
|
||||
-- Retrieval info: PRIVATE: INIT_TO_SIM_X NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: PRIVATE: JTAG_ENABLED NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: JTAG_ID STRING "NONE"
|
||||
-- Retrieval info: PRIVATE: MAXIMUM_DEPTH NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: MIFfilename STRING "./rtl/roms/6400-01m2.hex"
|
||||
-- Retrieval info: PRIVATE: NUMWORDS_A NUMERIC "256"
|
||||
-- Retrieval info: PRIVATE: RAM_BLOCK_TYPE NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: RegAddr NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: RegOutput NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
|
||||
-- Retrieval info: PRIVATE: SingleClock NUMERIC "1"
|
||||
-- Retrieval info: PRIVATE: UseDQRAM NUMERIC "0"
|
||||
-- Retrieval info: PRIVATE: WidthAddr NUMERIC "8"
|
||||
-- Retrieval info: PRIVATE: WidthData NUMERIC "4"
|
||||
-- Retrieval info: PRIVATE: rden NUMERIC "0"
|
||||
-- Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_INPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: CLOCK_ENABLE_OUTPUT_A STRING "BYPASS"
|
||||
-- Retrieval info: CONSTANT: INIT_FILE STRING "./rtl/roms/6400-01m2.hex"
|
||||
-- Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "Cyclone II"
|
||||
-- Retrieval info: CONSTANT: LPM_HINT STRING "ENABLE_RUNTIME_MOD=NO"
|
||||
-- Retrieval info: CONSTANT: LPM_TYPE STRING "altsyncram"
|
||||
-- Retrieval info: CONSTANT: NUMWORDS_A NUMERIC "256"
|
||||
-- Retrieval info: CONSTANT: OPERATION_MODE STRING "ROM"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_ACLR_A STRING "NONE"
|
||||
-- Retrieval info: CONSTANT: OUTDATA_REG_A STRING "UNREGISTERED"
|
||||
-- Retrieval info: CONSTANT: WIDTHAD_A NUMERIC "8"
|
||||
-- Retrieval info: CONSTANT: WIDTH_A NUMERIC "4"
|
||||
-- Retrieval info: CONSTANT: WIDTH_BYTEENA_A NUMERIC "1"
|
||||
-- Retrieval info: USED_PORT: address 0 0 8 0 INPUT NODEFVAL "address[7..0]"
|
||||
-- Retrieval info: USED_PORT: clock 0 0 0 0 INPUT VCC "clock"
|
||||
-- Retrieval info: USED_PORT: q 0 0 4 0 OUTPUT NODEFVAL "q[3..0]"
|
||||
-- Retrieval info: CONNECT: @address_a 0 0 8 0 address 0 0 8 0
|
||||
-- Retrieval info: CONNECT: @clock0 0 0 0 0 clock 0 0 0 0
|
||||
-- Retrieval info: CONNECT: q 0 0 4 0 @q_a 0 0 4 0
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL sync_prom.vhd TRUE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL sync_prom.inc FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL sync_prom.cmp FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL sync_prom.bsf FALSE
|
||||
-- Retrieval info: GEN_FILE: TYPE_NORMAL sync_prom_inst.vhd FALSE
|
||||
-- Retrieval info: LIB_FILE: altera_mf
|
||||
195
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/scandoubler.sv
Normal file
195
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/scandoubler.sv
Normal file
@@ -0,0 +1,195 @@
|
||||
//
|
||||
// scandoubler.v
|
||||
//
|
||||
// Copyright (c) 2015 Till Harbaum <till@harbaum.org>
|
||||
// Copyright (c) 2017 Sorgelig
|
||||
//
|
||||
// This source file is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published
|
||||
// by the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This source file is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
// TODO: Delay vsync one line
|
||||
|
||||
module scandoubler #(parameter LENGTH, parameter HALF_DEPTH)
|
||||
(
|
||||
// system interface
|
||||
input clk_sys,
|
||||
input ce_pix,
|
||||
input ce_pix_actual,
|
||||
|
||||
input hq2x,
|
||||
|
||||
// shifter video interface
|
||||
input hs_in,
|
||||
input vs_in,
|
||||
input line_start,
|
||||
|
||||
input [DWIDTH:0] r_in,
|
||||
input [DWIDTH:0] g_in,
|
||||
input [DWIDTH:0] b_in,
|
||||
input mono,
|
||||
|
||||
// output interface
|
||||
output reg hs_out,
|
||||
output vs_out,
|
||||
output [DWIDTH:0] r_out,
|
||||
output [DWIDTH:0] g_out,
|
||||
output [DWIDTH:0] b_out
|
||||
);
|
||||
|
||||
|
||||
localparam DWIDTH = HALF_DEPTH ? 2 : 5;
|
||||
|
||||
assign vs_out = vs_in;
|
||||
|
||||
reg [2:0] phase;
|
||||
reg [2:0] ce_div;
|
||||
reg [7:0] pix_len = 0;
|
||||
wire [7:0] pl = pix_len + 1'b1;
|
||||
|
||||
reg ce_x1, ce_x4;
|
||||
reg req_line_reset;
|
||||
wire ls_in = hs_in | line_start;
|
||||
always @(negedge clk_sys) begin
|
||||
reg old_ce;
|
||||
reg [2:0] ce_cnt;
|
||||
|
||||
reg [7:0] pixsz2, pixsz4 = 0;
|
||||
|
||||
old_ce <= ce_pix;
|
||||
if(~&pix_len) pix_len <= pix_len + 1'd1;
|
||||
|
||||
ce_x4 <= 0;
|
||||
ce_x1 <= 0;
|
||||
|
||||
// use such odd comparison to place c_x4 evenly if master clock isn't multiple 4.
|
||||
if((pl == pixsz4) || (pl == pixsz2) || (pl == (pixsz2+pixsz4))) begin
|
||||
phase <= phase + 1'd1;
|
||||
ce_x4 <= 1;
|
||||
end
|
||||
|
||||
if(~old_ce & ce_pix) begin
|
||||
pixsz2 <= {1'b0, pl[7:1]};
|
||||
pixsz4 <= {2'b00, pl[7:2]};
|
||||
ce_x1 <= 1;
|
||||
ce_x4 <= 1;
|
||||
pix_len <= 0;
|
||||
phase <= phase + 1'd1;
|
||||
|
||||
ce_cnt <= ce_cnt + 1'd1;
|
||||
if(ce_pix_actual) begin
|
||||
phase <= 0;
|
||||
ce_div <= ce_cnt + 1'd1;
|
||||
ce_cnt <= 0;
|
||||
req_line_reset <= 0;
|
||||
end
|
||||
|
||||
if(ls_in) req_line_reset <= 1;
|
||||
end
|
||||
end
|
||||
|
||||
reg ce_sd;
|
||||
always @(*) begin
|
||||
case(ce_div)
|
||||
2: ce_sd = !phase[0];
|
||||
4: ce_sd = !phase[1:0];
|
||||
default: ce_sd <= 1;
|
||||
endcase
|
||||
end
|
||||
|
||||
`define BITS_TO_FIT(N) ( \
|
||||
N <= 2 ? 0 : \
|
||||
N <= 4 ? 1 : \
|
||||
N <= 8 ? 2 : \
|
||||
N <= 16 ? 3 : \
|
||||
N <= 32 ? 4 : \
|
||||
N <= 64 ? 5 : \
|
||||
N <= 128 ? 6 : \
|
||||
N <= 256 ? 7 : \
|
||||
N <= 512 ? 8 : \
|
||||
N <=1024 ? 9 : 10 )
|
||||
|
||||
localparam AWIDTH = `BITS_TO_FIT(LENGTH);
|
||||
Hq2x #(.LENGTH(LENGTH), .HALF_DEPTH(HALF_DEPTH)) Hq2x
|
||||
(
|
||||
.clk(clk_sys),
|
||||
.ce_x4(ce_x4 & ce_sd),
|
||||
.inputpixel({b_in,g_in,r_in}),
|
||||
.mono(mono),
|
||||
.disable_hq2x(~hq2x),
|
||||
.reset_frame(vs_in),
|
||||
.reset_line(req_line_reset),
|
||||
.read_y(sd_line),
|
||||
.read_x(sd_h_actual),
|
||||
.outpixel({b_out,g_out,r_out})
|
||||
);
|
||||
|
||||
reg [10:0] sd_h_actual;
|
||||
always @(*) begin
|
||||
case(ce_div)
|
||||
2: sd_h_actual = sd_h[10:1];
|
||||
4: sd_h_actual = sd_h[10:2];
|
||||
default: sd_h_actual = sd_h;
|
||||
endcase
|
||||
end
|
||||
|
||||
reg [10:0] sd_h;
|
||||
reg [1:0] sd_line;
|
||||
always @(posedge clk_sys) begin
|
||||
|
||||
reg [11:0] hs_max,hs_rise,hs_ls;
|
||||
reg [10:0] hcnt;
|
||||
reg [11:0] sd_hcnt;
|
||||
|
||||
reg hs, hs2, vs, ls;
|
||||
|
||||
if(ce_x1) begin
|
||||
hs <= hs_in;
|
||||
ls <= ls_in;
|
||||
|
||||
if(ls && !ls_in) hs_ls <= {hcnt,1'b1};
|
||||
|
||||
// falling edge of hsync indicates start of line
|
||||
if(hs && !hs_in) begin
|
||||
hs_max <= {hcnt,1'b1};
|
||||
hcnt <= 0;
|
||||
if(ls && !ls_in) hs_ls <= {10'd0,1'b1};
|
||||
end else begin
|
||||
hcnt <= hcnt + 1'd1;
|
||||
end
|
||||
|
||||
// save position of rising edge
|
||||
if(!hs && hs_in) hs_rise <= {hcnt,1'b1};
|
||||
|
||||
vs <= vs_in;
|
||||
if(vs && ~vs_in) sd_line <= 0;
|
||||
end
|
||||
|
||||
if(ce_x4) begin
|
||||
hs2 <= hs_in;
|
||||
|
||||
// output counter synchronous to input and at twice the rate
|
||||
sd_hcnt <= sd_hcnt + 1'd1;
|
||||
sd_h <= sd_h + 1'd1;
|
||||
if(hs2 && !hs_in) sd_hcnt <= hs_max;
|
||||
if(sd_hcnt == hs_max) sd_hcnt <= 0;
|
||||
|
||||
// replicate horizontal sync at twice the speed
|
||||
if(sd_hcnt == hs_max) hs_out <= 0;
|
||||
if(sd_hcnt == hs_rise) hs_out <= 1;
|
||||
|
||||
if(sd_hcnt == hs_ls) sd_h <= 0;
|
||||
if(sd_hcnt == hs_ls) sd_line <= sd_line + 1'd1;
|
||||
end
|
||||
end
|
||||
|
||||
endmodule
|
||||
72
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/screech.vhd
Normal file
72
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/screech.vhd
Normal file
@@ -0,0 +1,72 @@
|
||||
-- Tire screech sound generator for Kee Games Sprint 2
|
||||
-- (c) 2017 James Sweet
|
||||
--
|
||||
-- Original circuit used a 7414 Schmitt trigger oscillator operating at approximately
|
||||
-- 1.2kHz producing a sawtooth with the frequency modulated slightly by the pseudo-random
|
||||
-- noise generator. This is an extension of work initially done in Verilog by Jonas Elofsson.
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
use IEEE.STD_LOGIC_UNSIGNED.all;
|
||||
|
||||
entity tire_screech is
|
||||
generic(
|
||||
constant Inc1 : integer := 24; -- These constants can be adjusted to tune the frequency and modulation
|
||||
constant Inc2 : integer := 34;
|
||||
constant Dec1 : integer := 23;
|
||||
constant Dec2 : integer := 12
|
||||
);
|
||||
port(
|
||||
Clk : in std_logic; -- 750kHz from the horizontal line counter chain works well here
|
||||
Noise : in std_logic; -- Output from LFSR pseudo-random noise generator
|
||||
Screech_out : out std_logic -- Screech output - single bit
|
||||
);
|
||||
end tire_screech;
|
||||
|
||||
architecture rtl of tire_screech is
|
||||
|
||||
signal Screech_count : integer range 1000 to 11000;
|
||||
signal Screech_state : std_logic;
|
||||
|
||||
begin
|
||||
|
||||
Screech: process(Clk, Screech_state)
|
||||
begin
|
||||
if rising_edge(Clk) then
|
||||
if screech_state = '1' then -- screech_state is 1, counter is rising
|
||||
if noise = '1' then -- Noise signal from LFSR, when high increases the slope of the rising ramp
|
||||
screech_count <= screech_count + inc2;
|
||||
else -- When Noise is low, decreas the slope of the ramp
|
||||
screech_count <= screech_count + inc1;
|
||||
end if;
|
||||
if screech_count > 10000 then -- Reverse the ramp direction when boundary value of 10,000 is reached
|
||||
screech_state <= '0';
|
||||
end if;
|
||||
elsif screech_state = '0' then -- screech_state is now low, decrement the counter (ramp down)
|
||||
if noise = '1' then
|
||||
screech_count <= screech_count - dec2; -- Slope is influenced by the Noise signal
|
||||
else
|
||||
screech_count <= screech_count - dec1;
|
||||
end if;
|
||||
if screech_count < 1000 then -- Reverse the ramp direction again when the lower boundary of 1,000 is crossed
|
||||
screech_state <= '1';
|
||||
end if;
|
||||
end if;
|
||||
end if;
|
||||
screech_out <= screech_state;
|
||||
end process;
|
||||
|
||||
end rtl;
|
||||
313
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/sprint1.vhd
Normal file
313
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/sprint1.vhd
Normal file
@@ -0,0 +1,313 @@
|
||||
-- Top level file for Kee Games Sprint 1
|
||||
-- (c) 2017 James Sweet
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
-- Targeted to EP2C5T144C8 mini board but porting to nearly any FPGA should be fairly simple
|
||||
-- See Sprint 1 manual for video output details. Resistor values listed here have been scaled
|
||||
-- for 3.3V logic.
|
||||
-- R48 1k Ohm
|
||||
-- R49 1k Ohm
|
||||
-- R50 680R
|
||||
-- R51 330R
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
use IEEE.STD_LOGIC_UNSIGNED.all;
|
||||
|
||||
|
||||
entity sprint1 is
|
||||
port(
|
||||
Clk_50_I : in std_logic; -- 50MHz input clock
|
||||
clk_12 : in std_logic; -- 12MHz input clock
|
||||
Reset_n : in std_logic; -- Reset button (Active low)
|
||||
|
||||
|
||||
VideoW_O : out std_logic; -- White video output (680 Ohm)
|
||||
VideoB_O : out std_logic; -- Black video output (1.2k)
|
||||
Sync_O : out std_logic; -- Composite sync output (1.2k)
|
||||
|
||||
|
||||
Hs : out std_logic;
|
||||
Vs : out std_logic;
|
||||
Vb : out std_logic;
|
||||
Hb : out std_logic;
|
||||
Video : out std_logic;
|
||||
|
||||
Audio : out std_logic_vector(6 downto 0);
|
||||
Coin1_I : in std_logic; -- Coin switches (Active low)
|
||||
Coin2_I : in std_logic;
|
||||
Start_I : in std_logic; -- Start button
|
||||
Gas_I : in std_logic; -- Gas pedal
|
||||
Gear1_I : in std_logic; -- Gear shifter, 4th gear = no other gear selected
|
||||
Gear2_I : in std_logic;
|
||||
Gear3_I : in std_logic;
|
||||
Test_I : in std_logic; -- Self-test switch
|
||||
SteerA_I : in std_logic; -- Steering wheel inputs, these are quadrature encoders
|
||||
SteerB_I : in std_logic;
|
||||
StartLamp_O : out std_logic -- Start button lamp
|
||||
);
|
||||
end sprint1;
|
||||
|
||||
architecture rtl of sprint1 is
|
||||
|
||||
signal clk_6 : std_logic;
|
||||
signal phi1 : std_logic;
|
||||
signal phi2 : std_logic;
|
||||
|
||||
signal Hcount : std_logic_vector(8 downto 0) := (others => '0');
|
||||
signal H256 : std_logic;
|
||||
signal H256_s : std_logic;
|
||||
signal H256_n : std_logic;
|
||||
signal H128 : std_logic;
|
||||
signal H64 : std_logic;
|
||||
signal H32 : std_logic;
|
||||
signal H16 : std_logic;
|
||||
signal H8 : std_logic;
|
||||
signal H8_n : std_logic;
|
||||
signal H4 : std_logic;
|
||||
signal H4_n : std_logic;
|
||||
signal H2 : std_logic;
|
||||
signal H1 : std_logic;
|
||||
|
||||
|
||||
|
||||
signal Vcount : std_logic_vector(7 downto 0) := (others => '0');
|
||||
signal V128 : std_logic;
|
||||
signal V64 : std_logic;
|
||||
signal V32 : std_logic;
|
||||
signal V16 : std_logic;
|
||||
signal V8 : std_logic;
|
||||
signal V4 : std_logic;
|
||||
signal V2 : std_logic;
|
||||
signal V1 : std_logic;
|
||||
|
||||
|
||||
signal Vreset : std_logic;
|
||||
signal Vblank_s : std_logic;
|
||||
signal Vblank_n_s : std_logic;
|
||||
signal Vblank : std_logic;
|
||||
signal Hblank : std_logic;
|
||||
signal Hsync : std_logic;
|
||||
signal Vsync : std_logic;
|
||||
|
||||
signal CompBlank_s : std_logic;
|
||||
signal CompSync_n_s : std_logic;
|
||||
|
||||
signal WhitePF_n : std_logic;
|
||||
signal BlackPF_n : std_logic;
|
||||
|
||||
signal Display : std_logic_vector(7 downto 0);
|
||||
|
||||
-- Address decoder
|
||||
signal addec_bus : std_logic_vector(7 downto 0);
|
||||
signal RnW : std_logic;
|
||||
signal Write_n : std_logic;
|
||||
signal ROM1 : std_logic;
|
||||
signal ROM2 : std_logic;
|
||||
signal ROM3 : std_logic;
|
||||
signal WRAM : std_logic;
|
||||
signal RAM_n : std_logic;
|
||||
signal Sync_n : std_logic;
|
||||
signal Switch_n : std_logic;
|
||||
signal Collision1_n : std_logic;
|
||||
signal Collision2_n : std_logic;
|
||||
signal Display_n : std_logic;
|
||||
signal TimerReset_n : std_logic;
|
||||
signal CollRst1_n : std_logic;
|
||||
signal CollRst2_n : std_logic;
|
||||
signal SteerRst1_n : std_logic;
|
||||
signal SteerRst2_n : std_logic;
|
||||
signal NoiseRst_n : std_logic;
|
||||
signal Attract : std_logic;
|
||||
signal Skid1 : std_logic;
|
||||
signal Skid2 : std_logic;
|
||||
|
||||
signal Crash_n : std_logic;
|
||||
signal Motor1_n : std_logic;
|
||||
signal Motor2_n : std_logic;
|
||||
signal Car1 : std_logic;
|
||||
signal Car1_n : std_logic;
|
||||
signal Car2 : std_logic;
|
||||
signal Car2_n : std_logic;
|
||||
signal Car3_4_n : std_logic;
|
||||
|
||||
signal NMI_n : std_logic;
|
||||
|
||||
signal Adr : std_logic_vector(9 downto 0);
|
||||
|
||||
signal SW1 : std_logic_vector(7 downto 0);
|
||||
|
||||
signal Inputs : std_logic_vector(1 downto 0);
|
||||
signal Collisions1 : std_logic_vector(1 downto 0);
|
||||
signal Collisions2 : std_logic_vector(1 downto 0);
|
||||
|
||||
begin
|
||||
-- Configuration DIP switches, these can be brought out to external switches if desired
|
||||
-- See Sprint 2 manual page 11 for complete information. Active low (0 = On, 1 = Off)
|
||||
-- 1 Oil slicks (0 - Oil slicks enabled)
|
||||
-- 2 Cycle tracks (0/1 - Cycle every lap/every two laps)
|
||||
-- 3 4 Coins per play (00 - 1 Coin per player)
|
||||
-- 5 Extended Play (0 - Extended Play enabled)
|
||||
-- 6 Not used (X - Don't care)
|
||||
-- 7 8 Game time (01 - 120 Seconds)
|
||||
SW1 <= "11000101"; -- Config dip switches
|
||||
|
||||
|
||||
Vid_sync: entity work.synchronizer
|
||||
port map(
|
||||
clk_12 => clk_12,
|
||||
clk_6 => clk_6,
|
||||
hcount => hcount,
|
||||
vcount => vcount,
|
||||
hsync => hsync,
|
||||
hblank => hblank,
|
||||
vblank_s => vblank_s,
|
||||
vblank_n_s => vblank_n_s,
|
||||
vblank => vblank,
|
||||
vsync => vsync,
|
||||
vreset => vreset
|
||||
);
|
||||
|
||||
|
||||
Background: entity work.playfield
|
||||
port map(
|
||||
clk6 => clk_6,
|
||||
display => display,
|
||||
HCount => HCount,
|
||||
VCount => VCount,
|
||||
HBlank => HBlank,
|
||||
H256_s => H256_s,
|
||||
VBlank => VBlank,
|
||||
VBlank_n_s => Vblank_n_s,
|
||||
HSync => Hsync,
|
||||
VSync => VSync,
|
||||
CompSync_n_s => CompSync_n_s,
|
||||
CompBlank_s => CompBlank_s,
|
||||
WhitePF_n => WhitePF_n,
|
||||
BlackPF_n => BlackPF_n
|
||||
);
|
||||
|
||||
|
||||
Cars: entity work.motion
|
||||
port map(
|
||||
CLK6 => clk_6,
|
||||
CLK12 => clk_12,
|
||||
PHI2 => phi2,
|
||||
DISPLAY => Display,
|
||||
H256_s => H256_s,
|
||||
VCount => VCount,
|
||||
HCount => HCount,
|
||||
Crash_n => Crash_n,
|
||||
Motor1_n => Motor1_n,
|
||||
Car1 => Car1,
|
||||
Car1_n => Car1_n,
|
||||
Car2 => Car2,
|
||||
Car2_n => Car2_n,
|
||||
Car3_4_n => Car3_4_n
|
||||
);
|
||||
|
||||
|
||||
PF_Comparator: entity work.collision_detect
|
||||
port map(
|
||||
Clk6 => Clk_6,
|
||||
Car1 => Car1,
|
||||
Car1_n => Car1_n,
|
||||
Car2 => Car2,
|
||||
Car2_n => Car2_n,
|
||||
Car3_4_n => Car3_4_n,
|
||||
WhitePF_n => WhitePF_n,
|
||||
BlackPF_n => BlackPF_n,
|
||||
CollRst1_n => CollRst1_n,
|
||||
Collisions1 => Collisions1
|
||||
);
|
||||
|
||||
|
||||
CPU: entity work.cpu_mem
|
||||
port map(
|
||||
Clk12 => clk_12,
|
||||
Clk6 => clk_6,
|
||||
Reset_n => reset_n,
|
||||
VCount => VCount,
|
||||
HCount => HCount,
|
||||
Hsync_n => not Hsync,
|
||||
Vblank_s => Vblank_s,
|
||||
Vreset => Vreset,
|
||||
Test_n => not Test_I,
|
||||
Attract => Attract,
|
||||
Skid1 => Skid1,
|
||||
Skid2 => Skid2,
|
||||
NoiseReset_n => NoiseRst_n,
|
||||
CollRst1_n => CollRst1_n,
|
||||
CollRst2_n => CollRst2_n,
|
||||
SteerRst1_n => SteerRst1_n,
|
||||
Lamp1 => StartLamp_O,
|
||||
Phi1_o => Phi1,
|
||||
Phi2_o => Phi2,
|
||||
Display => Display,
|
||||
IO_Adr => Adr,
|
||||
Collisions1 => Collisions1,
|
||||
Collisions2 => Collisions2,
|
||||
Inputs => Inputs
|
||||
);
|
||||
|
||||
|
||||
Input: entity work.Control_Inputs
|
||||
port map(
|
||||
clk6 => clk_6,
|
||||
SW1 => SW1, -- DIP switches
|
||||
Coin1_n => Coin1_I,
|
||||
Coin2_n => Coin2_I,
|
||||
Start => not Start_I, -- Active high in real hardware, inverting these makes more sense with the FPGA
|
||||
Gas => not Gas_I,
|
||||
Gear1 => not Gear1_I,
|
||||
Gear2 => not Gear2_I,
|
||||
Gear3 => not Gear3_I,
|
||||
Self_Test => not Test_I,
|
||||
Steering1A_n => SteerA_I,
|
||||
Steering1B_n => SteerB_I,
|
||||
SteerRst1_n => SteerRst1_n,
|
||||
Adr => Adr,
|
||||
Inputs => Inputs
|
||||
);
|
||||
|
||||
|
||||
Sound: entity work.audio
|
||||
port map(
|
||||
Clk_50 => Clk_50_I,
|
||||
Clk_6 => Clk_6,
|
||||
Reset_n => Reset_n,
|
||||
Motor1_n => Motor1_n,
|
||||
Skid1 => Skid1,
|
||||
Crash_n => Crash_n,
|
||||
NoiseReset_n => NoiseRst_n,
|
||||
Attract => Attract,
|
||||
Display => Display,
|
||||
HCount => HCount,
|
||||
VCount => VCount,
|
||||
Audio1 => Audio
|
||||
);
|
||||
|
||||
-- Video mixing
|
||||
VideoB_O <= (not(BlackPF_n and Car2_n and Car3_4_n)) nor CompBlank_s;
|
||||
VideoW_O <= not(WhitePF_n and Car1_n);
|
||||
Sync_O <= CompSync_n_s;
|
||||
|
||||
Vb <= VBLANK;
|
||||
Hb <= HBLANK;
|
||||
Hs <= Hsync;
|
||||
Vs <= Vsync;
|
||||
Video <= (WhitePF_n and blackpf_n and car1_n and Car2_n and Car3_4_n) nor CompBlank_s;
|
||||
|
||||
end rtl;
|
||||
338
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/sprint2.vhd
Normal file
338
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/sprint2.vhd
Normal file
@@ -0,0 +1,338 @@
|
||||
-- Top level file for Kee Games Sprint 2
|
||||
-- (c) 2017 James Sweet
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
-- Targeted to EP2C5T144C8 mini board but porting to nearly any FPGA should be fairly simple
|
||||
-- See Sprint 2 manual for video output details. Resistor values listed here have been scaled
|
||||
-- for 3.3V logic.
|
||||
-- R48 1k Ohm
|
||||
-- R49 1k Ohm
|
||||
-- R50 680R
|
||||
-- R51 330R
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
use IEEE.STD_LOGIC_UNSIGNED.all;
|
||||
|
||||
|
||||
entity sprint2 is
|
||||
port(
|
||||
clk_12 : in std_logic; -- 12MHz input clock
|
||||
Reset_n : in std_logic; -- Reset button (Active low)
|
||||
VideoW_O : out std_logic; -- White video output (680 Ohm)
|
||||
VideoB_O : out std_logic; -- Black video output (1.2k)
|
||||
Sync_O : out std_logic; -- Composite sync output (1.2k)
|
||||
Audio1_O : out std_logic_vector(6 downto 0); -- Ideally this should have a simple low pass filter
|
||||
Audio2_O : out std_logic_vector(6 downto 0);
|
||||
|
||||
Hs : out std_logic;
|
||||
Vs : out std_logic;
|
||||
Vb : out std_logic;
|
||||
Hb : out std_logic;
|
||||
Video : out std_logic;
|
||||
|
||||
Coin1_I : in std_logic; -- Coin switches (Active low)
|
||||
Coin2_I : in std_logic;
|
||||
Start1_I : in std_logic; -- Start buttons
|
||||
Start2_I : in std_logic;
|
||||
Trak_Sel_I : in std_logic; -- Track select button
|
||||
Gas1_I : in std_logic; -- Gas pedals
|
||||
Gas2_I : in std_logic;
|
||||
Gear1_1_I : in std_logic; -- Gear shifters, 4th gear = no other gear selected
|
||||
Gear1_2_I : in std_logic;
|
||||
Gear2_1_I : in std_logic;
|
||||
Gear2_2_I : in std_logic;
|
||||
Gear3_1_I : in std_logic;
|
||||
Gear3_2_I : in std_logic;
|
||||
Test_I : in std_logic; -- Self-test switch
|
||||
Steer_1A_I : in std_logic; -- Steering wheel inputs, these are quadrature encoders
|
||||
Steer_1B_I : in std_logic;
|
||||
Steer_2A_I : in std_logic;
|
||||
Steer_2B_I : in std_logic;
|
||||
Lamp1_O : out std_logic; -- Player 1 and 2 start button LEDs
|
||||
Lamp2_O : out std_logic
|
||||
);
|
||||
end sprint2;
|
||||
|
||||
architecture rtl of sprint2 is
|
||||
|
||||
signal clk_6 : std_logic;
|
||||
signal phi1 : std_logic;
|
||||
signal phi2 : std_logic;
|
||||
|
||||
signal Hcount : std_logic_vector(8 downto 0) := (others => '0');
|
||||
signal H256 : std_logic;
|
||||
signal H256_s : std_logic;
|
||||
signal H256_n : std_logic;
|
||||
signal H128 : std_logic;
|
||||
signal H64 : std_logic;
|
||||
signal H32 : std_logic;
|
||||
signal H16 : std_logic;
|
||||
signal H8 : std_logic;
|
||||
signal H8_n : std_logic;
|
||||
signal H4 : std_logic;
|
||||
signal H4_n : std_logic;
|
||||
signal H2 : std_logic;
|
||||
signal H1 : std_logic;
|
||||
|
||||
signal Hsync : std_logic;
|
||||
signal Vsync : std_logic;
|
||||
|
||||
signal Vcount : std_logic_vector(7 downto 0) := (others => '0');
|
||||
signal V128 : std_logic;
|
||||
signal V64 : std_logic;
|
||||
signal V32 : std_logic;
|
||||
signal V16 : std_logic;
|
||||
signal V8 : std_logic;
|
||||
signal V4 : std_logic;
|
||||
signal V2 : std_logic;
|
||||
signal V1 : std_logic;
|
||||
|
||||
signal Vblank : std_logic;
|
||||
signal Vreset : std_logic;
|
||||
signal Vblank_s : std_logic;
|
||||
signal Vblank_n_s : std_logic;
|
||||
signal HBlank : std_logic;
|
||||
|
||||
signal CompBlank_s : std_logic;
|
||||
signal CompSync_n_s : std_logic;
|
||||
|
||||
signal WhitePF_n : std_logic;
|
||||
signal BlackPF_n : std_logic;
|
||||
|
||||
signal Display : std_logic_vector(7 downto 0);
|
||||
|
||||
|
||||
-- Address decoder
|
||||
signal addec_bus : std_logic_vector(7 downto 0);
|
||||
signal RnW : std_logic;
|
||||
signal Write_n : std_logic;
|
||||
signal ROM1 : std_logic;
|
||||
signal ROM2 : std_logic;
|
||||
signal ROM3 : std_logic;
|
||||
signal WRAM : std_logic;
|
||||
signal RAM_n : std_logic;
|
||||
signal Sync_n : std_logic;
|
||||
signal Switch_n : std_logic;
|
||||
signal Collision1_n : std_logic;
|
||||
signal Collision2_n : std_logic;
|
||||
signal Display_n : std_logic;
|
||||
signal TimerReset_n : std_logic;
|
||||
signal CollRst1_n : std_logic;
|
||||
signal CollRst2_n : std_logic;
|
||||
signal SteerRst1_n : std_logic;
|
||||
signal SteerRst2_n : std_logic;
|
||||
signal NoiseRst_n : std_logic;
|
||||
signal Attract : std_logic := '1';
|
||||
signal Skid1 : std_logic;
|
||||
signal Skid2 : std_logic;
|
||||
signal Lamp1 : std_logic;
|
||||
signal Lamp2 : std_logic;
|
||||
|
||||
signal Crash_n : std_logic;
|
||||
signal Motor1_n : std_logic;
|
||||
signal Motor2_n : std_logic;
|
||||
signal Car1 : std_logic;
|
||||
signal Car1_n : std_logic;
|
||||
signal Car2 : std_logic;
|
||||
signal Car2_n : std_logic;
|
||||
signal Car3_4_n : std_logic;
|
||||
|
||||
signal NMI_n : std_logic;
|
||||
|
||||
signal Adr : std_logic_vector(9 downto 0);
|
||||
|
||||
signal SW1 : std_logic_vector(7 downto 0);
|
||||
|
||||
signal Inputs : std_logic_vector(1 downto 0);
|
||||
signal Collisions1 : std_logic_vector(1 downto 0);
|
||||
signal Collisions2 : std_logic_vector(1 downto 0);
|
||||
|
||||
|
||||
begin
|
||||
-- Configuration DIP switches, these can be brought out to external switches if desired
|
||||
-- See Sprint 2 manual page 11 for complete information. Active low (0 = On, 1 = Off)
|
||||
-- 1 Oil slicks (0 - Oil slicks enabled)
|
||||
-- 2 Cycle tracks (1 - Cycle through all tracks in attract mode)
|
||||
-- 3 4 Coins per play (00 - 1 Coin per player)
|
||||
-- 5 Extended Play (0 - Extended Play enabled)
|
||||
-- 6 Not used (X - Don't care)
|
||||
-- 7 8 Game time (01 - 120 Seconds)
|
||||
SW1 <= "01000101"; -- Config dip switches
|
||||
|
||||
|
||||
Vid_sync: entity work.synchronizer
|
||||
port map(
|
||||
clk_12 => clk_12,
|
||||
clk_6 => clk_6,
|
||||
hcount => hcount,
|
||||
vcount => vcount,
|
||||
hsync => hsync,
|
||||
hblank => hblank,
|
||||
vblank_s => vblank_s,
|
||||
vblank_n_s => vblank_n_s,
|
||||
vblank => vblank,
|
||||
vsync => vsync,
|
||||
vreset => vreset
|
||||
);
|
||||
|
||||
|
||||
Background: entity work.playfield
|
||||
port map(
|
||||
clk6 => clk_6,
|
||||
display => display,
|
||||
HCount => HCount,
|
||||
VCount => VCount,
|
||||
HBlank => HBlank,
|
||||
H256_s => H256_s,
|
||||
VBlank => VBlank,
|
||||
VBlank_n_s => Vblank_n_s,
|
||||
HSync => Hsync,
|
||||
VSync => VSync,
|
||||
CompSync_n_s => CompSync_n_s,
|
||||
CompBlank_s => CompBlank_s,
|
||||
WhitePF_n => WhitePF_n,
|
||||
BlackPF_n => BlackPF_n
|
||||
);
|
||||
|
||||
|
||||
Cars: entity work.motion
|
||||
port map(
|
||||
CLK6 => clk_6,
|
||||
CLK12 => clk_12,
|
||||
PHI2 => phi2,
|
||||
DISPLAY => Display,
|
||||
H256_s => H256_s,
|
||||
VCount => VCount,
|
||||
HCount => HCount,
|
||||
Crash_n => Crash_n,
|
||||
Motor1_n => Motor1_n,
|
||||
Motor2_n => Motor2_n,
|
||||
Car1 => Car1,
|
||||
Car1_n => Car1_n,
|
||||
Car2 => Car2,
|
||||
Car2_n => Car2_n,
|
||||
Car3_4_n => Car3_4_n
|
||||
);
|
||||
|
||||
|
||||
PF_Comparator: entity work.collision_detect
|
||||
port map(
|
||||
Clk6 => clk_6,
|
||||
Car1 => Car1,
|
||||
Car1_n => Car1_n,
|
||||
Car2 => Car2,
|
||||
Car2_n => Car2_n,
|
||||
Car3_4_n => Car3_4_n,
|
||||
WhitePF_n => WhitePF_n,
|
||||
BlackPF_n => BlackPF_n,
|
||||
CollRst1_n => CollRst1_n,
|
||||
CollRst2_n => CollRst2_n,
|
||||
Collisions1 => Collisions1,
|
||||
Collisions2 => Collisions2
|
||||
);
|
||||
|
||||
|
||||
CPU: entity work.cpu_mem
|
||||
port map(
|
||||
Clk12 => clk_12,
|
||||
Clk6 => clk_6,
|
||||
Reset_n => reset_n,
|
||||
VCount => VCount,
|
||||
HCount => HCount,
|
||||
Hsync_n => not Hsync,
|
||||
Vblank_s => Vblank_s,
|
||||
Vreset => Vreset,
|
||||
Test_n => not Test_I,
|
||||
Attract => Attract,
|
||||
Skid1 => Skid1,
|
||||
Skid2 => Skid2,
|
||||
NoiseReset_n => NoiseRst_n,
|
||||
CollRst1_n => CollRst1_n,
|
||||
CollRst2_n => CollRst2_n,
|
||||
SteerRst1_n => SteerRst1_n,
|
||||
SteerRst2_n => SteerRst2_n,
|
||||
Lamp1 => Lamp1_O,
|
||||
Lamp2 => Lamp2_O,
|
||||
Phi1_o => Phi1,
|
||||
Phi2_o => Phi2,
|
||||
Display => Display,
|
||||
IO_Adr => Adr,
|
||||
Collisions1 => Collisions1,
|
||||
Collisions2 => Collisions2,
|
||||
Inputs => Inputs
|
||||
);
|
||||
|
||||
|
||||
Input: entity work.Control_Inputs
|
||||
port map(
|
||||
clk6 => clk_6,
|
||||
SW1 => SW1, -- DIP switches
|
||||
Coin1_n => Coin1_I,
|
||||
Coin2_n => Coin2_I,
|
||||
Start1 => not Start1_I, -- Active high in real hardware, inverting these makes more sense with the FPGA
|
||||
Start2 => not Start2_I,
|
||||
Trak_Sel => not Trak_Sel_I,
|
||||
Gas1 => not Gas1_I,
|
||||
Gas2 => not Gas2_I,
|
||||
Gear1_1 => not Gear1_1_I,
|
||||
Gear1_2 => not Gear1_2_I,
|
||||
Gear2_1 => not Gear2_1_I,
|
||||
Gear2_2 => not Gear2_2_I,
|
||||
Gear3_1 => not Gear3_1_I,
|
||||
Gear3_2 => not Gear3_2_I,
|
||||
Self_Test => not Test_I,
|
||||
Steering1A_n => Steer_1A_I,
|
||||
Steering1B_n => Steer_1B_I,
|
||||
Steering2A_n => Steer_2A_I,
|
||||
Steering2B_n => Steer_2B_I,
|
||||
SteerRst1_n => SteerRst1_n,
|
||||
SteerRst2_n => SteerRst2_n,
|
||||
Adr => Adr,
|
||||
Inputs => Inputs
|
||||
);
|
||||
|
||||
|
||||
Sound: entity work.audio
|
||||
port map(
|
||||
Clk_6 => Clk_6,
|
||||
Reset_n => Reset_n,
|
||||
Motor1_n => Motor1_n,
|
||||
Motor2_n => Motor2_n,
|
||||
Skid1 => Skid1,
|
||||
Skid2 => Skid2,
|
||||
Crash_n => Crash_n,
|
||||
NoiseReset_n => NoiseRst_n,
|
||||
Attract => Attract,
|
||||
Display => Display,
|
||||
HCount => HCount,
|
||||
VCount => VCount,
|
||||
Audio1 => Audio1_O,
|
||||
Audio2 => Audio2_O
|
||||
);
|
||||
|
||||
-- Video mixing
|
||||
VideoB_O <= (not(BlackPF_n and Car2_n and Car3_4_n)) nor CompBlank_s;
|
||||
VideoW_O <= not(WhitePF_n and Car1_n and Car3_4_n);
|
||||
Sync_O <= CompSync_n_s;
|
||||
|
||||
|
||||
Vb <= VBLANK;
|
||||
Hb <= HBLANK;
|
||||
Hs <= Hsync;
|
||||
Vs <= Vsync;
|
||||
Video <= (WhitePF_n and blackpf_n and car1_n and Car2_n and Car3_4_n) nor CompBlank_s;
|
||||
|
||||
end rtl;
|
||||
157
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/sprint2_mist.sv
Normal file
157
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/sprint2_mist.sv
Normal file
@@ -0,0 +1,157 @@
|
||||
module sprint2_mist(
|
||||
output LED,
|
||||
output [5:0] VGA_R,
|
||||
output [5:0] VGA_G,
|
||||
output [5:0] VGA_B,
|
||||
output VGA_HS,
|
||||
output VGA_VS,
|
||||
output AUDIO_L,
|
||||
output AUDIO_R,
|
||||
input SPI_SCK,
|
||||
output SPI_DO,
|
||||
input SPI_DI,
|
||||
input SPI_SS2,
|
||||
input SPI_SS3,
|
||||
input CONF_DATA0,
|
||||
input CLOCK_27
|
||||
);
|
||||
|
||||
`include "rtl\build_id.sv"
|
||||
|
||||
localparam CONF_STR = {
|
||||
"Sprint2;;",
|
||||
"O1,Test Mode,Off,On;",
|
||||
"T2,Next Track;",
|
||||
"O34,Scandoubler Fx,None,HQ2x,CRT 25%,CRT 50%;",
|
||||
"T6,Reset;",
|
||||
"V,v1.00.",`BUILD_DATE
|
||||
};
|
||||
|
||||
wire [31:0] status;
|
||||
wire [1:0] buttons;
|
||||
wire [1:0] switches;
|
||||
wire [9:0] kbjoy;
|
||||
wire [7:0] joystick_0;
|
||||
wire [7:0] joystick_1;
|
||||
wire scandoubler_disable;
|
||||
wire ypbpr;
|
||||
wire ps2_kbd_clk, ps2_kbd_data;
|
||||
wire [6:0] audio1, audio2;
|
||||
wire video;
|
||||
|
||||
wire clk_48, clk_12;
|
||||
wire locked;
|
||||
pll pll
|
||||
(
|
||||
.inclk0(CLOCK_27),
|
||||
.c0(clk_48),
|
||||
.c1(clk_12),
|
||||
.locked(locked)
|
||||
);
|
||||
|
||||
wire led1, led2;
|
||||
assign LED = (led1 | led2);
|
||||
|
||||
sprint2 sprint2 (
|
||||
.clk_12(clk_12),
|
||||
.Reset_n(~(status[0] | status[6] | buttons[1])),
|
||||
.VideoW_O(),
|
||||
.VideoB_O(),
|
||||
.Sync_O(),
|
||||
.Hs(hs),
|
||||
.Vs(vs),
|
||||
.Vb(vb),
|
||||
.Hb(hb),
|
||||
.Video(video),
|
||||
.Audio1_O(audio1),
|
||||
.Audio2_O(audio2),
|
||||
.Coin1_I(~kbjoy[7]),
|
||||
.Coin2_I(~kbjoy[7]),
|
||||
.Start1_I(~kbjoy[5]),
|
||||
.Start2_I(~kbjoy[6]),
|
||||
.Trak_Sel_I(~status[2]),
|
||||
.Gas1_I(~kbjoy[4]),
|
||||
.Gas2_I(),
|
||||
// .Gear1_1_I(),// Gear shifters, 4th gear = no other gear selected
|
||||
// .Gear1_2_I(),
|
||||
// .Gear1_3_I(),
|
||||
// .Gear2_1_I(),
|
||||
// .Gear2_2_I(),
|
||||
// .Gear2_3_I(),
|
||||
.Test_I(~status[1]),
|
||||
.Steer_1A_I(~kbjoy[1]),// Steering wheel inputs, these are quadrature encoders
|
||||
.Steer_1B_I(~kbjoy[0]),
|
||||
// .Steer_2A_I(),
|
||||
// .Steer_2B_I(),
|
||||
.Lamp1_O(led1),
|
||||
.Lamp2_O(led2)
|
||||
);
|
||||
|
||||
dac dac (
|
||||
.CLK(clk_48),
|
||||
.RESET(1'b0),
|
||||
.DACin({audio1, audio2}),
|
||||
.DACout(AUDIO_L)
|
||||
);
|
||||
|
||||
assign AUDIO_R = AUDIO_L;
|
||||
|
||||
wire hs, vs;
|
||||
wire hb, vb;
|
||||
wire blankn = ~(hb | vb);
|
||||
video_mixer #(.LINE_LENGTH(480), .HALF_DEPTH(1)) video_mixer
|
||||
(
|
||||
.clk_sys(clk_48),
|
||||
.ce_pix(clk_12),
|
||||
.ce_pix_actual(clk_12),
|
||||
.SPI_SCK(SPI_SCK),
|
||||
.SPI_SS3(SPI_SS3),
|
||||
.SPI_DI(SPI_DI),
|
||||
.R(blankn ? {video,video,video} : "000"),
|
||||
.G(blankn ? {video,video,video} : "000"),
|
||||
.B(blankn ? {video,video,video} : "000"),
|
||||
.HSync(hs),
|
||||
.VSync(vs),
|
||||
.VGA_R(VGA_R),
|
||||
.VGA_G(VGA_G),
|
||||
.VGA_B(VGA_B),
|
||||
.VGA_VS(VGA_VS),
|
||||
.VGA_HS(VGA_HS),
|
||||
.scandoubler_disable(scandoubler_disable),
|
||||
.scanlines(scandoubler_disable ? 2'b00 : {status[4:3] == 3, status[4:3] == 2}),
|
||||
.hq2x(status[4:3]==1),
|
||||
.ypbpr_full(1),
|
||||
.line_start(0),
|
||||
.mono(0)
|
||||
);
|
||||
|
||||
mist_io #(.STRLEN(($size(CONF_STR)>>3))) mist_io
|
||||
(
|
||||
.clk_sys (clk_48 ),
|
||||
.conf_str (CONF_STR ),
|
||||
.SPI_SCK (SPI_SCK ),
|
||||
.CONF_DATA0 (CONF_DATA0 ),
|
||||
.SPI_SS2 (SPI_SS2 ),
|
||||
.SPI_DO (SPI_DO ),
|
||||
.SPI_DI (SPI_DI ),
|
||||
.buttons (buttons ),
|
||||
.switches (switches ),
|
||||
.scandoubler_disable(scandoubler_disable),
|
||||
.ypbpr (ypbpr ),
|
||||
.ps2_kbd_clk (ps2_kbd_clk ),
|
||||
.ps2_kbd_data (ps2_kbd_data ),
|
||||
.joystick_0 (joystick_0 ),
|
||||
.joystick_1 (joystick_1 ),
|
||||
.status (status )
|
||||
);
|
||||
|
||||
keyboard keyboard(
|
||||
.clk(clk_48),
|
||||
.reset(),
|
||||
.ps2_kbd_clk(ps2_kbd_clk),
|
||||
.ps2_kbd_data(ps2_kbd_data),
|
||||
.joystick(kbjoy)
|
||||
);
|
||||
|
||||
|
||||
endmodule
|
||||
245
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/sprint2_sound.vhd
Normal file
245
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/sprint2_sound.vhd
Normal file
@@ -0,0 +1,245 @@
|
||||
-- Audio for Sprint 2
|
||||
-- First attempt at modeling the analog sound circuits used in Sprint 2, may be room for improvement as
|
||||
-- I do not have a real board to compare.
|
||||
-- (c) 2017 James Sweet
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_UNSIGNED.all;
|
||||
|
||||
entity audio is
|
||||
port(
|
||||
Clk_6 : in std_logic;
|
||||
Reset_n : in std_logic;
|
||||
Motor1_n : in std_logic;
|
||||
Motor2_n : in std_logic;
|
||||
Skid1 : in std_logic;
|
||||
Skid2 : in std_logic;
|
||||
Crash_n : in std_logic;
|
||||
NoiseReset_n : in std_logic;
|
||||
Attract : in std_logic;
|
||||
Display : in std_logic_vector(7 downto 0);
|
||||
HCount : in std_logic_vector(8 downto 0);
|
||||
VCount : in std_logic_vector(7 downto 0);
|
||||
Audio1 : out std_logic_vector(6 downto 0);
|
||||
Audio2 : out std_logic_vector(6 downto 0)
|
||||
);
|
||||
end audio;
|
||||
|
||||
architecture rtl of audio is
|
||||
|
||||
signal reset : std_logic;
|
||||
|
||||
signal H4 : std_logic;
|
||||
signal V2 : std_logic;
|
||||
|
||||
signal Noise : std_logic;
|
||||
signal Noise_Shift : std_logic_vector(15 downto 0);
|
||||
signal Shift_in : std_logic;
|
||||
|
||||
signal Screech_count : integer range 1000 to 11000;
|
||||
signal Screech_state : std_logic;
|
||||
signal Screech_snd1 : std_logic;
|
||||
signal Screech_snd2 : std_logic;
|
||||
signal Screech1 : std_logic_vector(3 downto 0);
|
||||
signal Screech2 : std_logic_vector(3 downto 0);
|
||||
|
||||
signal Crash : std_logic_vector(3 downto 0);
|
||||
signal Bang : std_logic_vector(3 downto 0);
|
||||
|
||||
signal Mtr1_Freq : std_logic_vector(3 downto 0);
|
||||
signal Mtr2_Freq : std_logic_vector(3 downto 0);
|
||||
signal Motor1_speed : std_logic_vector(3 downto 0);
|
||||
signal Motor1_snd : std_logic_vector(5 downto 0);
|
||||
signal Motor2_speed : std_logic_vector(3 downto 0);
|
||||
signal Motor2_snd : std_logic_vector(5 downto 0);
|
||||
|
||||
signal ena_count : std_logic_vector(10 downto 0);
|
||||
signal ena_3k : std_logic;
|
||||
|
||||
signal bang_prefilter : std_logic_vector(3 downto 0);
|
||||
signal bang_filter_t1 : std_logic_vector(3 downto 0);
|
||||
signal bang_filter_t2 : std_logic_vector(3 downto 0);
|
||||
signal bang_filter_t3 : std_logic_vector(3 downto 0);
|
||||
signal bang_filtered : std_logic_vector(5 downto 0);
|
||||
|
||||
|
||||
begin
|
||||
|
||||
-- HCount
|
||||
-- (0) 1H 3 MHz
|
||||
-- (1) 2H 1.5MHz
|
||||
-- (2) 4H 750 kHz
|
||||
-- (3) 8H 375 kHz
|
||||
-- (4) 16H 187 kHz
|
||||
-- (5) 32H 93 kHz
|
||||
-- (6) 64H 46 kHz
|
||||
-- (7) 128H 23 kHz
|
||||
-- (8) 256H 12 kHz
|
||||
|
||||
reset <= (not reset_n);
|
||||
|
||||
H4 <= HCount(2);
|
||||
V2 <= VCount(1);
|
||||
|
||||
-- Generate the 3kHz clock enable used by the filter
|
||||
Enable: process(clk_6)
|
||||
begin
|
||||
if rising_edge(CLK_6) then
|
||||
ena_count <= ena_count + "1";
|
||||
ena_3k <= '0';
|
||||
if (ena_count(10 downto 0) = "00000000000") then
|
||||
ena_3k <= '1';
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- LFSR that generates pseudo-random noise
|
||||
Noise_gen: process(NoiseReset_n, V2)
|
||||
begin
|
||||
if (noisereset_n = '0') then
|
||||
noise_shift <= (others => '0');
|
||||
noise <= '0';
|
||||
elsif rising_edge(V2) then
|
||||
shift_in <= not(noise_shift(6) xor noise_shift(8));
|
||||
noise_shift <= shift_in & noise_shift(15 downto 1);
|
||||
noise <= noise_shift(0);
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- Tire screech sound for player 1 and 2 cars. These can be tuned slightly differently to model variations in analog sound hardware.
|
||||
Screech_gen1: entity work.tire_screech
|
||||
generic map( -- These values can be tweaked to tune the screech sound
|
||||
Inc1 => 24, -- Ramp increase rate when noise = 0
|
||||
Inc2 => 33, -- Ramp increase rate when noise = 1
|
||||
Dec1 => 29, -- Ramp decrease rate when noise = 0
|
||||
Dec2 => 16 -- Ramp decrease rate when noise = 1
|
||||
)
|
||||
port map(
|
||||
Clk => H4,
|
||||
Noise => noise,
|
||||
Screech_out => screech_snd1
|
||||
);
|
||||
|
||||
|
||||
Screech_gen2: entity work.tire_screech
|
||||
generic map( -- These values can be tweaked to tune the screech sound
|
||||
Inc1 => 24, -- Ramp increase rate when noise = 0
|
||||
Inc2 => 34, -- Ramp increase rate when noise = 1
|
||||
Dec1 => 23, -- Ramp decrease rate when noise = 0
|
||||
Dec2 => 12 -- Ramp decrease rate when noise = 1
|
||||
)
|
||||
port map(
|
||||
Clk => H4,
|
||||
Noise => noise,
|
||||
Screech_out => screech_snd2
|
||||
);
|
||||
|
||||
-- Convert screech from 1 bit to 4 bits wide and enable via skid1 and skid2 signals
|
||||
Screech_ctrl: process(screech_snd1, screech_snd2, skid1, skid2)
|
||||
begin
|
||||
if (skid1 and screech_snd1) = '1' then
|
||||
screech1 <= "1111";
|
||||
else
|
||||
screech1 <= "0000";
|
||||
end if;
|
||||
|
||||
if (skid2 and screech_snd2) = '1' then
|
||||
screech2 <= "1111";
|
||||
else
|
||||
screech2 <= "0000";
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
Crash_sound: process(crash_n, crash, display, noise)
|
||||
begin
|
||||
if crash_n = '0' then
|
||||
crash <= display(3 downto 0);
|
||||
end if;
|
||||
if noise = '1' then
|
||||
bang_prefilter <= crash;
|
||||
else
|
||||
bang_prefilter <= "0000";
|
||||
end if;
|
||||
end process;
|
||||
|
||||
---- Very simple low pass filter, borrowed from MikeJ's Asteroids code
|
||||
Crash_filter: process(clk_6)
|
||||
begin
|
||||
if rising_edge(clk_6) then
|
||||
if (ena_3k = '1') then
|
||||
bang_filter_t1 <= bang_prefilter;
|
||||
bang_filter_t2 <= bang_filter_t1;
|
||||
bang_filter_t3 <= bang_filter_t2;
|
||||
end if;
|
||||
bang_filtered <= ("00" & bang_filter_t1) +
|
||||
('0' & bang_filter_t2 & '0') +
|
||||
("00" & bang_filter_t3);
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
Motor1_latch: process(Motor1_n, Display)
|
||||
begin
|
||||
if Motor1_n = '0' then
|
||||
Motor1_speed <= Display(3 downto 0);
|
||||
end if;
|
||||
end process;
|
||||
|
||||
Motor1: entity work.EngineSound
|
||||
generic map(
|
||||
Freq_tune => 50 -- Tuning pot for engine sound frequency
|
||||
)
|
||||
port map(
|
||||
Clk_6 => clk_6,
|
||||
Ena_3k => ena_3k,
|
||||
EngineData => motor1_speed,
|
||||
Motor => motor1_snd
|
||||
);
|
||||
|
||||
|
||||
Motor2_latch: process(Motor2_n, Display)
|
||||
begin
|
||||
if Motor2_n = '0' then
|
||||
Motor2_speed <= Display(3 downto 0);
|
||||
end if;
|
||||
end process;
|
||||
|
||||
Motor2: entity work.EngineSound
|
||||
generic map(
|
||||
Freq_tune => 48 -- Tuning pot for engine sound frequency
|
||||
)
|
||||
port map(
|
||||
Clk_6 => clk_6,
|
||||
Ena_3k => ena_3k,
|
||||
EngineData => motor2_speed,
|
||||
Motor => motor2_snd
|
||||
);
|
||||
|
||||
|
||||
-- Audio mixer, also mutes sound in attract mode
|
||||
Audio1 <= ('0' & motor1_snd) + ("00" & screech1) + ('0' & bang_filtered);-- when attract = '0'
|
||||
--else "0000000";
|
||||
|
||||
Audio2 <= ('0' & motor2_snd) + ("00" & screech2) + ('0' & bang_filtered);-- when attract = '0'
|
||||
--else "0000000";
|
||||
|
||||
|
||||
|
||||
|
||||
end rtl;
|
||||
177
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/sync.vhd
Normal file
177
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/sync.vhd
Normal file
@@ -0,0 +1,177 @@
|
||||
-- Video synchronizer circuit for Sprint 2
|
||||
-- Similar circuit used in many other Atari and Kee Games arcade games
|
||||
-- (c) 2017 James Sweet
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
use IEEE.STD_LOGIC_UNSIGNED.all;
|
||||
|
||||
entity synchronizer is
|
||||
port(
|
||||
clk_12 : in std_logic;
|
||||
clk_6 : out std_logic;
|
||||
hcount : out std_logic_vector(8 downto 0);
|
||||
vcount : out std_logic_vector(7 downto 0);
|
||||
hsync : out std_logic;
|
||||
hblank : out std_logic;
|
||||
vblank_s : out std_logic;
|
||||
vblank_n_s : out std_logic;
|
||||
vblank : out std_logic;
|
||||
vsync : out std_logic;
|
||||
vreset : out std_logic);
|
||||
end synchronizer;
|
||||
|
||||
architecture rtl of synchronizer is
|
||||
|
||||
signal h_counter : std_logic_vector(9 downto 0) := (others => '0');
|
||||
signal H256 : std_logic;
|
||||
signal H256_n : std_logic;
|
||||
signal H128 : std_logic;
|
||||
signal H64 : std_logic;
|
||||
signal H32 : std_logic;
|
||||
signal H16 : std_logic;
|
||||
signal H8 : std_logic;
|
||||
signal H8_n : std_logic;
|
||||
signal H4 : std_logic;
|
||||
signal H4_n : std_logic;
|
||||
signal H2 : std_logic;
|
||||
signal H1 : std_logic;
|
||||
|
||||
signal v_counter : std_logic_vector(7 downto 0) := (others => '0');
|
||||
signal V128 : std_logic;
|
||||
signal V64 : std_logic;
|
||||
signal V32 : std_logic;
|
||||
signal V16 : std_logic;
|
||||
signal V8 : std_logic;
|
||||
signal V4 : std_logic;
|
||||
signal V2 : std_logic;
|
||||
signal V1 : std_logic;
|
||||
|
||||
signal sync_bus : std_logic_vector(3 downto 0) := (others => '0');
|
||||
signal sync_reg : std_logic_vector(3 downto 0) := (others => '0');
|
||||
signal vblank_int : std_logic := '0';
|
||||
signal vreset_n : std_logic := '0';
|
||||
|
||||
signal hblank_int : std_logic := '0';
|
||||
signal hsync_int : std_logic := '0';
|
||||
signal hsync_reset : std_logic := '0';
|
||||
|
||||
|
||||
begin
|
||||
|
||||
-- Horizontal counter is 9 bits long plus additional flip flop. The last 4 bit IC in the chain resets to 0010 so total count resets to 128
|
||||
-- using only the last three count states
|
||||
H_count: process(clk_12)
|
||||
begin
|
||||
if rising_edge(clk_12) then
|
||||
if h_counter = "1111111111" then
|
||||
h_counter <= "0100000000";
|
||||
else
|
||||
h_counter <= h_counter + 1;
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Vertical counter is 8 bits, clocked by the rising edge of H256 at the end of each horizontal line
|
||||
V_count: process(hsync_int)
|
||||
begin
|
||||
if rising_edge(Hsync_int) then
|
||||
if vreset_n = '0' then
|
||||
v_counter <= (others => '0');
|
||||
else
|
||||
v_counter <= v_counter + '1';
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Many Atari raster games use a 256 x 4 bit prom to decode vertical sync signals
|
||||
-- This could be replaced by combinatorial logic
|
||||
M2: entity work.sync_prom
|
||||
port map(
|
||||
clock => clk_12,
|
||||
address => sync_reg(3) & V128 & V64 & V16 & V8 & V4 & V2 & V1,
|
||||
q => sync_bus
|
||||
);
|
||||
|
||||
-- Register fed by the sync PROM, in the original hardware this also creates the complements of these signals
|
||||
sync_register: process(hsync_int)
|
||||
begin
|
||||
if rising_edge(hsync_int) then
|
||||
sync_reg <= sync_bus;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Outputs of sync PROM
|
||||
vblank_s <= sync_reg(3);
|
||||
vblank_n_s <= not sync_reg(3);
|
||||
vreset <= sync_reg(2);
|
||||
vreset_n <= not sync_reg(2);
|
||||
vblank <= sync_reg(1);
|
||||
vsync <= sync_reg(0);
|
||||
|
||||
-- A pair of D type flip-flops that generate the Hsync signal
|
||||
Hsync_1: process(H256_n, H32)
|
||||
begin
|
||||
if H256_n = '0' then
|
||||
hblank_int <= '0';
|
||||
else
|
||||
if rising_edge(H32) then
|
||||
hblank_int <= not H64;
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
Hsync_2: process(hblank_int, H8)
|
||||
begin
|
||||
if hblank_int = '0' then
|
||||
hsync_int <= '0';
|
||||
else
|
||||
if rising_edge(H8) then
|
||||
hsync_int <= H32;
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Assign various signals
|
||||
clk_6 <= h_counter(0);
|
||||
H1 <= h_counter(1);
|
||||
H2 <= h_counter(2);
|
||||
H4 <= h_counter(3);
|
||||
H8 <= h_counter(4);
|
||||
H16 <= h_counter(5);
|
||||
H32 <= h_counter(6);
|
||||
H64 <= h_counter(7);
|
||||
H128 <= h_counter(8);
|
||||
H256 <= h_counter(9);
|
||||
H4_n <= not H4;
|
||||
H8_n <= not H8;
|
||||
H256_n <= not H256;
|
||||
|
||||
V1 <= v_counter(0);
|
||||
V2 <= v_counter(1);
|
||||
V4 <= v_counter(2);
|
||||
V8 <= v_counter(3);
|
||||
V16 <= v_counter(4);
|
||||
V32 <= v_counter(5);
|
||||
V64 <= v_counter(6);
|
||||
V128 <= v_counter(7);
|
||||
|
||||
hcount <= h_counter(9 downto 1);
|
||||
vcount <= v_counter;
|
||||
hsync <= hsync_int;
|
||||
hblank <= hblank_int;
|
||||
|
||||
end rtl;
|
||||
242
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/video_mixer.sv
Normal file
242
Arcade_MiST/Custom Hardware/Sprint2_MiST/rtl/video_mixer.sv
Normal file
@@ -0,0 +1,242 @@
|
||||
//
|
||||
//
|
||||
// Copyright (c) 2017 Sorgelig
|
||||
//
|
||||
// This program is GPL Licensed. See COPYING for the full license.
|
||||
//
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
`timescale 1ns / 1ps
|
||||
|
||||
//
|
||||
// LINE_LENGTH: Length of display line in pixels
|
||||
// Usually it's length from HSync to HSync.
|
||||
// May be less if line_start is used.
|
||||
//
|
||||
// HALF_DEPTH: If =1 then color dept is 3 bits per component
|
||||
// For half depth 6 bits monochrome is available with
|
||||
// mono signal enabled and color = {G, R}
|
||||
|
||||
module video_mixer
|
||||
#(
|
||||
parameter LINE_LENGTH = 768,
|
||||
parameter HALF_DEPTH = 0,
|
||||
|
||||
parameter OSD_COLOR = 3'd4,
|
||||
parameter OSD_X_OFFSET = 10'd0,
|
||||
parameter OSD_Y_OFFSET = 10'd0
|
||||
)
|
||||
(
|
||||
// master clock
|
||||
// it should be multiple by (ce_pix*4).
|
||||
input clk_sys,
|
||||
|
||||
// Pixel clock or clock_enable (both are accepted).
|
||||
input ce_pix,
|
||||
|
||||
// Some systems have multiple resolutions.
|
||||
// ce_pix_actual should match ce_pix where every second or fourth pulse is enabled,
|
||||
// thus half or qurter resolutions can be used without brake video sync while switching resolutions.
|
||||
// For fixed single resolution (or when video sync stability isn't required) ce_pix_actual = ce_pix.
|
||||
input ce_pix_actual,
|
||||
|
||||
// OSD SPI interface
|
||||
input SPI_SCK,
|
||||
input SPI_SS3,
|
||||
input SPI_DI,
|
||||
|
||||
// scanlines (00-none 01-25% 10-50% 11-75%)
|
||||
input [1:0] scanlines,
|
||||
|
||||
// 0 = HVSync 31KHz, 1 = CSync 15KHz
|
||||
input scandoubler_disable,
|
||||
|
||||
// High quality 2x scaling
|
||||
input hq2x,
|
||||
|
||||
// YPbPr always uses composite sync
|
||||
input ypbpr,
|
||||
|
||||
// 0 = 16-240 range. 1 = 0-255 range. (only for YPbPr color space)
|
||||
input ypbpr_full,
|
||||
|
||||
// color
|
||||
input [DWIDTH:0] R,
|
||||
input [DWIDTH:0] G,
|
||||
input [DWIDTH:0] B,
|
||||
|
||||
// Monochrome mode (for HALF_DEPTH only)
|
||||
input mono,
|
||||
|
||||
// interlace sync. Positive pulses.
|
||||
input HSync,
|
||||
input VSync,
|
||||
|
||||
// Falling of this signal means start of informative part of line.
|
||||
// It can be horizontal blank signal.
|
||||
// This signal can be used to reduce amount of required FPGA RAM for HQ2x scan doubler
|
||||
// If FPGA RAM is not an issue, then simply set it to 0 for whole line processing.
|
||||
// Keep in mind: due to algo first and last pixels of line should be black to avoid side artefacts.
|
||||
// Thus, if blank signal is used to reduce the line, make sure to feed at least one black (or paper) pixel
|
||||
// before first informative pixel.
|
||||
input line_start,
|
||||
|
||||
// MiST video output signals
|
||||
output [5:0] VGA_R,
|
||||
output [5:0] VGA_G,
|
||||
output [5:0] VGA_B,
|
||||
output VGA_VS,
|
||||
output VGA_HS
|
||||
);
|
||||
|
||||
localparam DWIDTH = HALF_DEPTH ? 2 : 5;
|
||||
|
||||
wire [DWIDTH:0] R_sd;
|
||||
wire [DWIDTH:0] G_sd;
|
||||
wire [DWIDTH:0] B_sd;
|
||||
wire hs_sd, vs_sd;
|
||||
|
||||
scandoubler #(.LENGTH(LINE_LENGTH), .HALF_DEPTH(HALF_DEPTH)) scandoubler
|
||||
(
|
||||
.*,
|
||||
.hs_in(HSync),
|
||||
.vs_in(VSync),
|
||||
.r_in(R),
|
||||
.g_in(G),
|
||||
.b_in(B),
|
||||
|
||||
.hs_out(hs_sd),
|
||||
.vs_out(vs_sd),
|
||||
.r_out(R_sd),
|
||||
.g_out(G_sd),
|
||||
.b_out(B_sd)
|
||||
);
|
||||
|
||||
wire [DWIDTH:0] rt = (scandoubler_disable ? R : R_sd);
|
||||
wire [DWIDTH:0] gt = (scandoubler_disable ? G : G_sd);
|
||||
wire [DWIDTH:0] bt = (scandoubler_disable ? B : B_sd);
|
||||
|
||||
generate
|
||||
if(HALF_DEPTH) begin
|
||||
wire [5:0] r = mono ? {gt,rt} : {rt,rt};
|
||||
wire [5:0] g = mono ? {gt,rt} : {gt,gt};
|
||||
wire [5:0] b = mono ? {gt,rt} : {bt,bt};
|
||||
end else begin
|
||||
wire [5:0] r = rt;
|
||||
wire [5:0] g = gt;
|
||||
wire [5:0] b = bt;
|
||||
end
|
||||
endgenerate
|
||||
|
||||
wire hs = (scandoubler_disable ? HSync : hs_sd);
|
||||
wire vs = (scandoubler_disable ? VSync : vs_sd);
|
||||
|
||||
reg scanline = 0;
|
||||
always @(posedge clk_sys) begin
|
||||
reg old_hs, old_vs;
|
||||
|
||||
old_hs <= hs;
|
||||
old_vs <= vs;
|
||||
|
||||
if(old_hs && ~hs) scanline <= ~scanline;
|
||||
if(old_vs && ~vs) scanline <= 0;
|
||||
end
|
||||
|
||||
wire [5:0] r_out, g_out, b_out;
|
||||
always @(*) begin
|
||||
case(scanlines & {scanline, scanline})
|
||||
1: begin // reduce 25% = 1/2 + 1/4
|
||||
r_out = {1'b0, r[5:1]} + {2'b00, r[5:2]};
|
||||
g_out = {1'b0, g[5:1]} + {2'b00, g[5:2]};
|
||||
b_out = {1'b0, b[5:1]} + {2'b00, b[5:2]};
|
||||
end
|
||||
|
||||
2: begin // reduce 50% = 1/2
|
||||
r_out = {1'b0, r[5:1]};
|
||||
g_out = {1'b0, g[5:1]};
|
||||
b_out = {1'b0, b[5:1]};
|
||||
end
|
||||
|
||||
3: begin // reduce 75% = 1/4
|
||||
r_out = {2'b00, r[5:2]};
|
||||
g_out = {2'b00, g[5:2]};
|
||||
b_out = {2'b00, b[5:2]};
|
||||
end
|
||||
|
||||
default: begin
|
||||
r_out = r;
|
||||
g_out = g;
|
||||
b_out = b;
|
||||
end
|
||||
endcase
|
||||
end
|
||||
|
||||
wire [5:0] red, green, blue;
|
||||
osd #(OSD_X_OFFSET, OSD_Y_OFFSET, OSD_COLOR) osd
|
||||
(
|
||||
.*,
|
||||
|
||||
.R_in(r_out),
|
||||
.G_in(g_out),
|
||||
.B_in(b_out),
|
||||
.HSync(hs),
|
||||
.VSync(vs),
|
||||
|
||||
.R_out(red),
|
||||
.G_out(green),
|
||||
.B_out(blue)
|
||||
);
|
||||
|
||||
wire [5:0] yuv_full[225] = '{
|
||||
6'd0, 6'd0, 6'd0, 6'd0, 6'd1, 6'd1, 6'd1, 6'd1,
|
||||
6'd2, 6'd2, 6'd2, 6'd3, 6'd3, 6'd3, 6'd3, 6'd4,
|
||||
6'd4, 6'd4, 6'd5, 6'd5, 6'd5, 6'd5, 6'd6, 6'd6,
|
||||
6'd6, 6'd7, 6'd7, 6'd7, 6'd7, 6'd8, 6'd8, 6'd8,
|
||||
6'd9, 6'd9, 6'd9, 6'd9, 6'd10, 6'd10, 6'd10, 6'd11,
|
||||
6'd11, 6'd11, 6'd11, 6'd12, 6'd12, 6'd12, 6'd13, 6'd13,
|
||||
6'd13, 6'd13, 6'd14, 6'd14, 6'd14, 6'd15, 6'd15, 6'd15,
|
||||
6'd15, 6'd16, 6'd16, 6'd16, 6'd17, 6'd17, 6'd17, 6'd17,
|
||||
6'd18, 6'd18, 6'd18, 6'd19, 6'd19, 6'd19, 6'd19, 6'd20,
|
||||
6'd20, 6'd20, 6'd21, 6'd21, 6'd21, 6'd21, 6'd22, 6'd22,
|
||||
6'd22, 6'd23, 6'd23, 6'd23, 6'd23, 6'd24, 6'd24, 6'd24,
|
||||
6'd25, 6'd25, 6'd25, 6'd25, 6'd26, 6'd26, 6'd26, 6'd27,
|
||||
6'd27, 6'd27, 6'd27, 6'd28, 6'd28, 6'd28, 6'd29, 6'd29,
|
||||
6'd29, 6'd29, 6'd30, 6'd30, 6'd30, 6'd31, 6'd31, 6'd31,
|
||||
6'd31, 6'd32, 6'd32, 6'd32, 6'd33, 6'd33, 6'd33, 6'd33,
|
||||
6'd34, 6'd34, 6'd34, 6'd35, 6'd35, 6'd35, 6'd35, 6'd36,
|
||||
6'd36, 6'd36, 6'd36, 6'd37, 6'd37, 6'd37, 6'd38, 6'd38,
|
||||
6'd38, 6'd38, 6'd39, 6'd39, 6'd39, 6'd40, 6'd40, 6'd40,
|
||||
6'd40, 6'd41, 6'd41, 6'd41, 6'd42, 6'd42, 6'd42, 6'd42,
|
||||
6'd43, 6'd43, 6'd43, 6'd44, 6'd44, 6'd44, 6'd44, 6'd45,
|
||||
6'd45, 6'd45, 6'd46, 6'd46, 6'd46, 6'd46, 6'd47, 6'd47,
|
||||
6'd47, 6'd48, 6'd48, 6'd48, 6'd48, 6'd49, 6'd49, 6'd49,
|
||||
6'd50, 6'd50, 6'd50, 6'd50, 6'd51, 6'd51, 6'd51, 6'd52,
|
||||
6'd52, 6'd52, 6'd52, 6'd53, 6'd53, 6'd53, 6'd54, 6'd54,
|
||||
6'd54, 6'd54, 6'd55, 6'd55, 6'd55, 6'd56, 6'd56, 6'd56,
|
||||
6'd56, 6'd57, 6'd57, 6'd57, 6'd58, 6'd58, 6'd58, 6'd58,
|
||||
6'd59, 6'd59, 6'd59, 6'd60, 6'd60, 6'd60, 6'd60, 6'd61,
|
||||
6'd61, 6'd61, 6'd62, 6'd62, 6'd62, 6'd62, 6'd63, 6'd63,
|
||||
6'd63
|
||||
};
|
||||
|
||||
// http://marsee101.blog19.fc2.com/blog-entry-2311.html
|
||||
// Y = 16 + 0.257*R + 0.504*G + 0.098*B (Y = 0.299*R + 0.587*G + 0.114*B)
|
||||
// Pb = 128 - 0.148*R - 0.291*G + 0.439*B (Pb = -0.169*R - 0.331*G + 0.500*B)
|
||||
// Pr = 128 + 0.439*R - 0.368*G - 0.071*B (Pr = 0.500*R - 0.419*G - 0.081*B)
|
||||
|
||||
wire [18:0] y_8 = 19'd04096 + ({red, 8'd0} + {red, 3'd0}) + ({green, 9'd0} + {green, 2'd0}) + ({blue, 6'd0} + {blue, 5'd0} + {blue, 2'd0});
|
||||
wire [18:0] pb_8 = 19'd32768 - ({red, 7'd0} + {red, 4'd0} + {red, 3'd0}) - ({green, 8'd0} + {green, 5'd0} + {green, 3'd0}) + ({blue, 8'd0} + {blue, 7'd0} + {blue, 6'd0});
|
||||
wire [18:0] pr_8 = 19'd32768 + ({red, 8'd0} + {red, 7'd0} + {red, 6'd0}) - ({green, 8'd0} + {green, 6'd0} + {green, 5'd0} + {green, 4'd0} + {green, 3'd0}) - ({blue, 6'd0} + {blue , 3'd0});
|
||||
|
||||
wire [7:0] y = ( y_8[17:8] < 16) ? 8'd16 : ( y_8[17:8] > 235) ? 8'd235 : y_8[15:8];
|
||||
wire [7:0] pb = (pb_8[17:8] < 16) ? 8'd16 : (pb_8[17:8] > 240) ? 8'd240 : pb_8[15:8];
|
||||
wire [7:0] pr = (pr_8[17:8] < 16) ? 8'd16 : (pr_8[17:8] > 240) ? 8'd240 : pr_8[15:8];
|
||||
|
||||
assign VGA_R = ypbpr ? (ypbpr_full ? yuv_full[pr-8'd16] : pr[7:2]) : red;
|
||||
assign VGA_G = ypbpr ? (ypbpr_full ? yuv_full[y -8'd16] : y[7:2]) : green;
|
||||
assign VGA_B = ypbpr ? (ypbpr_full ? yuv_full[pb-8'd16] : pb[7:2]) : blue;
|
||||
assign VGA_VS = (scandoubler_disable | ypbpr) ? 1'b1 : ~vs_sd;
|
||||
assign VGA_HS = scandoubler_disable ? ~(HSync ^ VSync) : ypbpr ? ~(hs_sd ^ vs_sd) : ~hs_sd;
|
||||
|
||||
endmodule
|
||||
BIN
Arcade_MiST/Custom Hardware/Sprint2_MiST/snapshot/sprint2.rbf
Normal file
BIN
Arcade_MiST/Custom Hardware/Sprint2_MiST/snapshot/sprint2.rbf
Normal file
Binary file not shown.
30
Arcade_MiST/Custom Hardware/Sprint2_MiST/sprint2.qpf
Normal file
30
Arcade_MiST/Custom Hardware/Sprint2_MiST/sprint2.qpf
Normal file
@@ -0,0 +1,30 @@
|
||||
# -------------------------------------------------------------------------- #
|
||||
#
|
||||
# Copyright (C) 1991-2013 Altera Corporation
|
||||
# Your use of Altera Corporation's design tools, logic functions
|
||||
# and other software and tools, and its AMPP partner logic
|
||||
# functions, and any output files from any of the foregoing
|
||||
# (including device programming or simulation files), and any
|
||||
# associated documentation or information are expressly subject
|
||||
# to the terms and conditions of the Altera Program License
|
||||
# Subscription Agreement, Altera MegaCore Function License
|
||||
# Agreement, or other applicable license agreement, including,
|
||||
# without limitation, that your use is for the sole purpose of
|
||||
# programming logic devices manufactured by Altera and sold by
|
||||
# Altera or its authorized distributors. Please refer to the
|
||||
# applicable agreement for further details.
|
||||
#
|
||||
# -------------------------------------------------------------------------- #
|
||||
#
|
||||
# Quartus II 64-Bit
|
||||
# Version 13.0.1 Build 232 06/12/2013 Service Pack 1 SJ Web Edition
|
||||
# Date created = 19:51:47 November 12, 2017
|
||||
#
|
||||
# -------------------------------------------------------------------------- #
|
||||
|
||||
QUARTUS_VERSION = "13.0"
|
||||
DATE = "19:51:47 November 12, 2017"
|
||||
|
||||
# Revisions
|
||||
|
||||
PROJECT_REVISION = "sprint2"
|
||||
186
Arcade_MiST/Custom Hardware/Sprint2_MiST/sprint2.qsf
Normal file
186
Arcade_MiST/Custom Hardware/Sprint2_MiST/sprint2.qsf
Normal file
@@ -0,0 +1,186 @@
|
||||
# -------------------------------------------------------------------------- #
|
||||
#
|
||||
# Copyright (C) 1991-2014 Altera Corporation
|
||||
# Your use of Altera Corporation's design tools, logic functions
|
||||
# and other software and tools, and its AMPP partner logic
|
||||
# functions, and any output files from any of the foregoing
|
||||
# (including device programming or simulation files), and any
|
||||
# associated documentation or information are expressly subject
|
||||
# to the terms and conditions of the Altera Program License
|
||||
# Subscription Agreement, Altera MegaCore Function License
|
||||
# Agreement, or other applicable license agreement, including,
|
||||
# without limitation, that your use is for the sole purpose of
|
||||
# programming logic devices manufactured by Altera and sold by
|
||||
# Altera or its authorized distributors. Please refer to the
|
||||
# applicable agreement for further details.
|
||||
#
|
||||
# -------------------------------------------------------------------------- #
|
||||
#
|
||||
# Quartus II 64-Bit
|
||||
# Version 13.1.4 Build 182 03/12/2014 SJ Web Edition
|
||||
# Date created = 15:18:38 May 31, 2018
|
||||
#
|
||||
# -------------------------------------------------------------------------- #
|
||||
#
|
||||
# Notes:
|
||||
#
|
||||
# 1) The default values for assignments are stored in the file:
|
||||
# sprint1_assignment_defaults.qdf
|
||||
# If this file doesn't exist, see file:
|
||||
# assignment_defaults.qdf
|
||||
#
|
||||
# 2) Altera recommends that you do not modify this file. This
|
||||
# file is updated automatically by the Quartus II software
|
||||
# and any changes you make may be lost or overwritten.
|
||||
#
|
||||
# -------------------------------------------------------------------------- #
|
||||
|
||||
|
||||
|
||||
# Project-Wide Assignments
|
||||
# ========================
|
||||
set_global_assignment -name ORIGINAL_QUARTUS_VERSION "13.0 SP1"
|
||||
set_global_assignment -name PROJECT_CREATION_TIME_DATE "19:52:16 OCTOBER 10, 2017"
|
||||
set_global_assignment -name LAST_QUARTUS_VERSION 13.1
|
||||
set_global_assignment -name PROJECT_OUTPUT_DIRECTORY output_files
|
||||
|
||||
# Analysis & Synthesis Assignments
|
||||
# ================================
|
||||
set_global_assignment -name FAMILY "Cyclone III"
|
||||
set_global_assignment -name ALLOW_POWER_UP_DONT_CARE OFF
|
||||
set_global_assignment -name SYNTH_TIMING_DRIVEN_SYNTHESIS OFF
|
||||
set_global_assignment -name DEVICE_FILTER_PIN_COUNT 144
|
||||
set_global_assignment -name DEVICE_FILTER_SPEED_GRADE 8
|
||||
set_global_assignment -name TOP_LEVEL_ENTITY sprint2_mist
|
||||
|
||||
# Fitter Assignments
|
||||
# ==================
|
||||
set_global_assignment -name DEVICE EP3C25E144C8
|
||||
set_global_assignment -name STRATIX_DEVICE_IO_STANDARD "3.3-V LVTTL"
|
||||
set_global_assignment -name ENABLE_CONFIGURATION_PINS OFF
|
||||
set_global_assignment -name ENABLE_NCE_PIN OFF
|
||||
set_global_assignment -name ENABLE_BOOT_SEL_PIN OFF
|
||||
set_global_assignment -name CYCLONEIII_CONFIGURATION_SCHEME "PASSIVE SERIAL"
|
||||
set_global_assignment -name CRC_ERROR_OPEN_DRAIN OFF
|
||||
set_global_assignment -name FORCE_CONFIGURATION_VCCIO ON
|
||||
set_global_assignment -name CYCLONEII_RESERVE_NCEO_AFTER_CONFIGURATION "USE AS REGULAR IO"
|
||||
set_global_assignment -name RESERVE_DATA0_AFTER_CONFIGURATION "USE AS REGULAR IO"
|
||||
set_global_assignment -name RESERVE_DATA1_AFTER_CONFIGURATION "USE AS REGULAR IO"
|
||||
set_global_assignment -name RESERVE_FLASH_NCE_AFTER_CONFIGURATION "USE AS REGULAR IO"
|
||||
set_global_assignment -name RESERVE_DCLK_AFTER_CONFIGURATION "USE AS REGULAR IO"
|
||||
|
||||
# Assembler Assignments
|
||||
# =====================
|
||||
set_global_assignment -name USE_CONFIGURATION_DEVICE OFF
|
||||
set_global_assignment -name GENERATE_RBF_FILE ON
|
||||
|
||||
# SignalTap II Assignments
|
||||
# ========================
|
||||
set_global_assignment -name ENABLE_SIGNALTAP OFF
|
||||
set_global_assignment -name USE_SIGNALTAP_FILE output_files/stp3.stp
|
||||
|
||||
# Advanced I/O Timing Assignments
|
||||
# ===============================
|
||||
set_global_assignment -name OUTPUT_IO_TIMING_NEAR_END_VMEAS "HALF VCCIO" -rise
|
||||
set_global_assignment -name OUTPUT_IO_TIMING_NEAR_END_VMEAS "HALF VCCIO" -fall
|
||||
set_global_assignment -name OUTPUT_IO_TIMING_FAR_END_VMEAS "HALF SIGNAL SWING" -rise
|
||||
set_global_assignment -name OUTPUT_IO_TIMING_FAR_END_VMEAS "HALF SIGNAL SWING" -fall
|
||||
|
||||
# ---------------------
|
||||
# start ENTITY(sprint1)
|
||||
set_location_assignment PIN_7 -to LED
|
||||
set_location_assignment PIN_54 -to CLOCK_27
|
||||
set_location_assignment PIN_144 -to VGA_R[5]
|
||||
set_location_assignment PIN_143 -to VGA_R[4]
|
||||
set_location_assignment PIN_142 -to VGA_R[3]
|
||||
set_location_assignment PIN_141 -to VGA_R[2]
|
||||
set_location_assignment PIN_137 -to VGA_R[1]
|
||||
set_location_assignment PIN_135 -to VGA_R[0]
|
||||
set_location_assignment PIN_133 -to VGA_B[5]
|
||||
set_location_assignment PIN_132 -to VGA_B[4]
|
||||
set_location_assignment PIN_125 -to VGA_B[3]
|
||||
set_location_assignment PIN_121 -to VGA_B[2]
|
||||
set_location_assignment PIN_120 -to VGA_B[1]
|
||||
set_location_assignment PIN_115 -to VGA_B[0]
|
||||
set_location_assignment PIN_114 -to VGA_G[5]
|
||||
set_location_assignment PIN_113 -to VGA_G[4]
|
||||
set_location_assignment PIN_112 -to VGA_G[3]
|
||||
set_location_assignment PIN_111 -to VGA_G[2]
|
||||
set_location_assignment PIN_110 -to VGA_G[1]
|
||||
set_location_assignment PIN_106 -to VGA_G[0]
|
||||
set_location_assignment PIN_136 -to VGA_VS
|
||||
set_location_assignment PIN_119 -to VGA_HS
|
||||
set_location_assignment PIN_65 -to AUDIO_L
|
||||
set_location_assignment PIN_80 -to AUDIO_R
|
||||
set_location_assignment PIN_105 -to SPI_DO
|
||||
set_location_assignment PIN_88 -to SPI_DI
|
||||
set_location_assignment PIN_126 -to SPI_SCK
|
||||
set_location_assignment PIN_127 -to SPI_SS2
|
||||
set_location_assignment PIN_91 -to SPI_SS3
|
||||
set_location_assignment PIN_13 -to CONF_DATA0
|
||||
# end ENTITY(sprint1)
|
||||
# -------------------
|
||||
|
||||
# --------------------------
|
||||
# start ENTITY(sprint1_mist)
|
||||
|
||||
# start DESIGN_PARTITION(Top)
|
||||
# ---------------------------
|
||||
|
||||
# Incremental Compilation Assignments
|
||||
# ===================================
|
||||
set_global_assignment -name PARTITION_NETLIST_TYPE SOURCE -section_id Top
|
||||
set_global_assignment -name PARTITION_FITTER_PRESERVATION_LEVEL PLACEMENT_AND_ROUTING -section_id Top
|
||||
set_global_assignment -name PARTITION_COLOR 16764057 -section_id Top
|
||||
|
||||
# end DESIGN_PARTITION(Top)
|
||||
# -------------------------
|
||||
|
||||
# end ENTITY(sprint1_mist)
|
||||
# ------------------------
|
||||
set_global_assignment -name VHDL_FILE rtl/T65/T65_Pack.vhd
|
||||
set_global_assignment -name VHDL_FILE rtl/T65/T65_MCode.vhd
|
||||
set_global_assignment -name VHDL_FILE rtl/T65/T65_ALU.vhd
|
||||
set_global_assignment -name VHDL_FILE rtl/T65/T65.vhd
|
||||
set_global_assignment -name VHDL_FILE rtl/sprint2.vhd
|
||||
set_global_assignment -name VHDL_FILE rtl/sync.vhd
|
||||
set_global_assignment -name VHDL_FILE rtl/playfield.vhd
|
||||
set_global_assignment -name VHDL_FILE rtl/motion.vhd
|
||||
set_global_assignment -name VHDL_FILE rtl/collision.vhd
|
||||
set_global_assignment -name VHDL_FILE rtl/cpu_mem.vhd
|
||||
set_global_assignment -name VHDL_FILE rtl/Inputs.vhd
|
||||
set_global_assignment -name VHDL_FILE rtl/sprint2_sound.vhd
|
||||
set_global_assignment -name QIP_FILE rtl/ram1k_dp.qip
|
||||
set_global_assignment -name VHDL_FILE rtl/screech.vhd
|
||||
set_global_assignment -name VHDL_FILE rtl/EngineSound.vhd
|
||||
set_global_assignment -name SYSTEMVERILOG_FILE rtl/dac.sv
|
||||
set_global_assignment -name SYSTEMVERILOG_FILE rtl/sprint2_mist.sv
|
||||
set_global_assignment -name SYSTEMVERILOG_FILE rtl/video_mixer.sv
|
||||
set_global_assignment -name SYSTEMVERILOG_FILE rtl/scandoubler.sv
|
||||
set_global_assignment -name SYSTEMVERILOG_FILE rtl/hq2x.sv
|
||||
set_global_assignment -name SYSTEMVERILOG_FILE rtl/keyboard.sv
|
||||
set_global_assignment -name SYSTEMVERILOG_FILE rtl/mist_io.sv
|
||||
set_global_assignment -name SYSTEMVERILOG_FILE rtl/osd.sv
|
||||
set_global_assignment -name MIN_CORE_JUNCTION_TEMP 0
|
||||
set_global_assignment -name MAX_CORE_JUNCTION_TEMP 85
|
||||
set_global_assignment -name POWER_PRESET_COOLING_SOLUTION "23 MM HEAT SINK WITH 200 LFPM AIRFLOW"
|
||||
set_global_assignment -name POWER_BOARD_THERMAL_MODEL "NONE (CONSERVATIVE)"
|
||||
set_global_assignment -name QIP_FILE rtl/roms/addec_prom.qip
|
||||
set_global_assignment -name QIP_FILE rtl/roms/Char_LSB.qip
|
||||
set_global_assignment -name QIP_FILE rtl/roms/Char_MSB.qip
|
||||
set_global_assignment -name QIP_FILE rtl/roms/j6_prom.qip
|
||||
set_global_assignment -name QIP_FILE rtl/roms/k6_prom.qip
|
||||
set_global_assignment -name QIP_FILE rtl/roms/prog_rom1.qip
|
||||
set_global_assignment -name QIP_FILE rtl/roms/prog_rom2.qip
|
||||
set_global_assignment -name QIP_FILE rtl/roms/prog_rom3.qip
|
||||
set_global_assignment -name QIP_FILE rtl/roms/prog_rom4.qip
|
||||
set_global_assignment -name QIP_FILE rtl/roms/sync_prom.qip
|
||||
set_global_assignment -name VERILOG_FILE rtl/pll.v
|
||||
set_instance_assignment -name IO_STANDARD "3.3-V LVTTL" -to CONF_DATA0
|
||||
set_instance_assignment -name IO_STANDARD "3.3-V LVTTL" -to SPI_DI
|
||||
set_instance_assignment -name IO_STANDARD "3.3-V LVTTL" -to SPI_SS2
|
||||
set_instance_assignment -name IO_STANDARD "3.3-V LVTTL" -to SPI_SCK
|
||||
set_instance_assignment -name IO_STANDARD "3.3-V LVTTL" -to SPI_DO
|
||||
set_instance_assignment -name IO_STANDARD "3.3-V LVTTL" -to SPI_SS3
|
||||
set_instance_assignment -name IO_STANDARD "3.3-V LVTTL" -to CLOCK_27
|
||||
set_instance_assignment -name PARTITION_HIERARCHY root_partition -to | -section_id Top
|
||||
8
Arcade_MiST/Custom Hardware/Sprint2_MiST/sprint2.srf
Normal file
8
Arcade_MiST/Custom Hardware/Sprint2_MiST/sprint2.srf
Normal file
@@ -0,0 +1,8 @@
|
||||
{ "" "" "" "PCI-clamp diode is not supported in this mode. The following 1 pins must meet the Altera requirements for 3.3V, 3.0V, and 2.5V interfaces if they are connected to devices other than the supported configuration devices. In these cases, Altera recommends termination method as specified in the Application Note 447." { } { } 0 169203 "" 0 0 "Quartus II" 0 -1 0 ""}
|
||||
{ "" "" "" "*" { } { } 0 10036 "" 0 0 "Quartus II" 0 -1 0 ""}
|
||||
{ "" "" "" "*" { } { } 0 10631 "" 0 0 "Quartus II" 0 -1 0 ""}
|
||||
{ "" "" "" "*" { } { } 0 13004 "" 0 0 "Quartus II" 0 -1 0 ""}
|
||||
{ "" "" "" "*" { } { } 0 21074 "" 0 0 "Quartus II" 0 -1 0 ""}
|
||||
{ "" "" "" "*" { } { } 0 169177 "" 0 0 "Quartus II" 0 -1 0 ""}
|
||||
{ "" "" "" "*" { } { } 0 10273 "" 0 0 "Quartus II" 0 -1 0 ""}
|
||||
{ "" "" "" "*" { } { } 0 10268 "" 0 0 "Quartus II" 0 -1 0 ""}
|
||||
37
Arcade_MiST/Custom Hardware/SprintOne_MiST/clean.bat
Normal file
37
Arcade_MiST/Custom Hardware/SprintOne_MiST/clean.bat
Normal file
@@ -0,0 +1,37 @@
|
||||
@echo off
|
||||
del /s *.bak
|
||||
del /s *.orig
|
||||
del /s *.rej
|
||||
del /s *~
|
||||
rmdir /s /q db
|
||||
rmdir /s /q incremental_db
|
||||
rmdir /s /q output_files
|
||||
rmdir /s /q simulation
|
||||
rmdir /s /q greybox_tmp
|
||||
rmdir /s /q hc_output
|
||||
rmdir /s /q .qsys_edit
|
||||
rmdir /s /q hps_isw_handoff
|
||||
rmdir /s /q sys\.qsys_edit
|
||||
rmdir /s /q sys\vip
|
||||
cd sys
|
||||
for /d %%i in (*_sim) do rmdir /s /q "%%~nxi"
|
||||
cd ..
|
||||
for /d %%i in (*_sim) do rmdir /s /q "%%~nxi"
|
||||
del build_id.v
|
||||
del c5_pin_model_dump.txt
|
||||
del PLLJ_PLLSPE_INFO.txt
|
||||
del /s *.qws
|
||||
del /s *.ppf
|
||||
del /s *.ddb
|
||||
del /s *.csv
|
||||
del /s *.cmp
|
||||
del /s *.sip
|
||||
del /s *.spd
|
||||
del /s *.bsf
|
||||
del /s *.f
|
||||
del /s *.sopcinfo
|
||||
del /s *.xml
|
||||
del /s new_rtl_netlist
|
||||
del /s old_rtl_netlist
|
||||
|
||||
pause
|
||||
159
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/EngineSound.vhd
Normal file
159
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/EngineSound.vhd
Normal file
@@ -0,0 +1,159 @@
|
||||
-- Motor sound generator for Kee Games Sprint 1
|
||||
-- Identical circuits are used in a number of other related games
|
||||
-- (c) 2017 James Sweet
|
||||
--
|
||||
-- Original circuit used a 555 configured as an astable oscillator with the frequency controlled by
|
||||
-- a four bit binary value. The output of this oscillator drives a counter configured to produce an
|
||||
-- irregular thumping simulating the sound of an engine.
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
use IEEE.STD_LOGIC_UNSIGNED.all;
|
||||
|
||||
entity EngineSound is
|
||||
generic(
|
||||
constant Freq_tune : integer := 50 -- Value from 0-100 used to tune the overall engine sound frequency
|
||||
);
|
||||
port(
|
||||
Clk_6 : in std_logic;
|
||||
Ena_3k : in std_logic;
|
||||
EngineData : in std_logic_vector(3 downto 0);
|
||||
Motor : out std_logic_vector(5 downto 0)
|
||||
);
|
||||
end EngineSound;
|
||||
|
||||
architecture rtl of EngineSound is
|
||||
|
||||
signal RPM_val : integer range 1 to 350;
|
||||
signal Ramp_term_unfilt : integer range 1 to 80000;
|
||||
signal Ramp_Count : integer range 0 to 80000;
|
||||
signal Ramp_term : integer range 1 to 80000;
|
||||
signal Freq_mod : integer range 0 to 400;
|
||||
signal Motor_Clk : std_logic;
|
||||
|
||||
signal Counter_A : std_logic;
|
||||
signal Counter_B : unsigned(2 downto 0);
|
||||
signal Counter_A_clk : std_logic;
|
||||
|
||||
signal Motor_prefilter : unsigned(1 downto 0);
|
||||
signal Motor_filter_t1 : unsigned(3 downto 0);
|
||||
signal Motor_filter_t2 : unsigned(3 downto 0);
|
||||
signal Motor_filter_t3 : unsigned(3 downto 0);
|
||||
signal Motor_filtered : unsigned(5 downto 0);
|
||||
|
||||
|
||||
begin
|
||||
|
||||
-- The frequency of the oscillator is set by a 4 bit binary value controlled by the game CPU
|
||||
-- in the real hardware this is a 555 coupled to a 4 bit resistor DAC used to pull the frequency.
|
||||
-- The output of this DAC has a capacitor to smooth out the frequency variation.
|
||||
-- The constants assigned to RPM_val can be tweaked to adjust the frequency curve
|
||||
|
||||
Speed_select: process(Clk_6)
|
||||
begin
|
||||
if rising_edge(Clk_6) then
|
||||
case EngineData is
|
||||
when "0000" => RPM_val <= 280;
|
||||
when "0001" => RPM_val <= 245;
|
||||
when "0010" => RPM_val <= 230;
|
||||
when "0011" => RPM_val <= 205;
|
||||
when "0100" => RPM_val <= 190;
|
||||
when "0101" => RPM_val <= 175;
|
||||
when "0110" => RPM_val <= 160;
|
||||
when "0111" => RPM_val <= 145;
|
||||
when "1000" => RPM_val <= 130;
|
||||
when "1001" => RPM_val <= 115;
|
||||
when "1010" => RPM_val <= 100;
|
||||
when "1011" => RPM_val <= 85;
|
||||
when "1100" => RPM_val <= 70;
|
||||
when "1101" => RPM_val <= 55;
|
||||
when "1110" => RPM_val <= 40;
|
||||
when "1111" => RPM_val <= 25;
|
||||
end case;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- There is a RC filter between the frequency control DAC and the 555 to smooth out the transitions between the
|
||||
-- 16 possible states. We can simulate a reasonable approximation of that behavior using a linear slope which is
|
||||
-- not truly accurate but should be close enough.
|
||||
RC_filt: process(clk_6, ena_3k, ramp_term_unfilt)
|
||||
begin
|
||||
if rising_edge(clk_6) then
|
||||
if ena_3k = '1' then
|
||||
if ramp_term_unfilt > ramp_term then
|
||||
ramp_term <= ramp_term + 5;
|
||||
elsif ramp_term_unfilt = ramp_term then
|
||||
ramp_term <= ramp_term;
|
||||
else
|
||||
ramp_term <= ramp_term - 3;
|
||||
end if;
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- Ramp_term terminates the ramp count, the higher this value, the longer the ramp will count up and the lower
|
||||
-- the frequency. RPM_val is multiplied by a constant which can be adjusted by changing the value of freq_tune
|
||||
-- to simulate the function of the frequency adjustment pot in the original hardware.
|
||||
ramp_term_unfilt <= ((200 - freq_tune) * RPM_val);
|
||||
|
||||
-- Variable frequency oscillator roughly approximating the function of a 555 astable oscillator
|
||||
Ramp_osc: process(clk_6)
|
||||
begin
|
||||
if rising_edge(clk_6) then
|
||||
motor_clk <= '1';
|
||||
ramp_count <= ramp_count + 1;
|
||||
if ramp_count > ramp_term then
|
||||
ramp_count <= 0;
|
||||
motor_clk <= '0';
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- 7492 counter with XOR on two of the outputs creates lumpy engine sound from smooth pulse train
|
||||
-- 7492 has two sections, one div-by-2 and one div-by-6.
|
||||
Engine_counter: process(motor_clk, Counter_A_clk, Counter_B)
|
||||
begin
|
||||
if rising_edge(motor_clk) then
|
||||
Counter_B <= Counter_B + '1';
|
||||
end if;
|
||||
Counter_A_clk <= Counter_B(0) xor Counter_B(2);
|
||||
if rising_edge(counter_A_clk) then
|
||||
Counter_A <= (not Counter_A);
|
||||
end if;
|
||||
end process;
|
||||
motor_prefilter <= ('0' & Counter_B(2)) + ('0' & Counter_B(1)) + ('0' & Counter_A);
|
||||
|
||||
-- Very simple low pass filter, borrowed from MikeJ's Asteroids code
|
||||
Engine_filter: process(clk_6)
|
||||
begin
|
||||
if rising_edge(clk_6) then
|
||||
if (ena_3k = '1') then
|
||||
motor_filter_t1 <= ("00" & motor_prefilter) + ("00" & motor_prefilter);
|
||||
motor_filter_t2 <= motor_filter_t1;
|
||||
motor_filter_t3 <= motor_filter_t2;
|
||||
end if;
|
||||
motor_filtered <= ("00" & motor_filter_t1) +
|
||||
('0' & motor_filter_t2 & '0') +
|
||||
("00" & motor_filter_t3);
|
||||
end if;
|
||||
end process;
|
||||
|
||||
motor <= std_logic_vector(motor_filtered);
|
||||
|
||||
end rtl;
|
||||
137
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/Inputs.vhd
Normal file
137
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/Inputs.vhd
Normal file
@@ -0,0 +1,137 @@
|
||||
-- Input block for Kee Games Sprint 1
|
||||
-- 2017 James Sweet
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
|
||||
entity control_inputs is
|
||||
port(
|
||||
Clk6 : in std_logic;
|
||||
SW1 : in std_logic_vector(7 downto 0); -- DIP switches
|
||||
Coin1_n : in std_logic; -- Coin switches
|
||||
Coin2_n : in std_logic;
|
||||
Start : in std_logic; -- player start switch
|
||||
Gas : in std_logic; -- Gas pedal, simple on/off switche
|
||||
Gear1 : in std_logic; -- Gear select lever
|
||||
Gear2 : in std_logic;
|
||||
Gear3 : in std_logic;
|
||||
Self_Test : in std_logic; -- Self test switch
|
||||
Steering1A_n : in std_logic; -- Steering wheel signals
|
||||
Steering1B_n : in std_logic;
|
||||
SteerRst1_n : in std_logic;
|
||||
Adr : in std_logic_vector(9 downto 0); -- Adress bus, only the lower 9 bits used by IO circuitry
|
||||
Inputs : out std_logic_vector(1 downto 0) -- Out to data bus, only upper two bits used
|
||||
);
|
||||
end control_inputs;
|
||||
|
||||
architecture rtl of control_inputs is
|
||||
|
||||
signal A8_8 : std_logic;
|
||||
signal H9_Q_n : std_logic;
|
||||
signal H8_en : std_logic;
|
||||
signal Coin1 : std_logic;
|
||||
signal Coin2 : std_logic;
|
||||
signal SW1_bank1 : std_logic;
|
||||
signal SW1_bank2 : std_logic;
|
||||
signal DipSW : std_logic_vector(7 downto 0);
|
||||
signal E8_in : std_logic_vector(3 downto 0);
|
||||
signal J9_out : std_logic_vector(7 downto 0);
|
||||
signal E8_out : std_logic_vector(9 downto 0);
|
||||
|
||||
signal Steering1B_Q_n : std_logic;
|
||||
signal Steering1A_Q : std_logic;
|
||||
|
||||
|
||||
begin
|
||||
|
||||
-- Inputs
|
||||
M8: process(Adr, A8_8, SW1_bank2, Coin2_n, Coin1_n, Steering1B_Q_n, Steering1A_Q)
|
||||
begin
|
||||
case Adr(7 downto 6) is
|
||||
when "00" => Inputs <= A8_8 & SW1_bank2; -- There is actually an inverter N9 fed by A8_8 so we will just account for that
|
||||
when "01" => Inputs <= Coin2_n & Coin1_n;
|
||||
when "10" => Inputs <= Steering1B_Q_n & Steering1A_Q;
|
||||
when others => Inputs <= "11";
|
||||
end case;
|
||||
end process;
|
||||
|
||||
H9: process(Adr, Gear1, Gear2, Gear3, Gas, Self_Test, Start)
|
||||
begin
|
||||
if Adr(4) = '0' then -- Adr(4) is connected to enable
|
||||
case Adr(2 downto 0) is
|
||||
when "000" => H9_Q_n <= (not Gear1);
|
||||
when "001" => H9_Q_n <= (not Gear2);
|
||||
when "010" => H9_Q_n <= (not Gear3);
|
||||
when "011" => H9_Q_n <= (not Gas);
|
||||
when "100" => H9_Q_n <= (not Self_Test);
|
||||
when "101" => H9_Q_n <= (not Start);
|
||||
when "110" => H9_Q_n <= '1';
|
||||
when others => H9_Q_n <= '1';
|
||||
end case;
|
||||
else
|
||||
H9_Q_n <= '1';
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Steering
|
||||
M9: process(Steering1A_n, Steering1B_n, SteerRst1_n)
|
||||
begin
|
||||
if SteerRst1_n <= '0' then -- Asynchronous clear
|
||||
Steering1B_Q_n <= '1';
|
||||
elsif rising_edge(Steering1B_n) then -- Steering encoders are active low but inverted on board
|
||||
Steering1A_Q <= Steering1A_n;
|
||||
Steering1B_Q_n <= '0';
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- The way the dip switches are wired in the real hardware requires OR logic
|
||||
-- to achieve the same result while using standard active-low switch inputs.
|
||||
-- Switches are split into two banks, each bank fed from half of selector J9.
|
||||
J9: process(Adr)
|
||||
begin
|
||||
if Adr(3) = '1' then
|
||||
J9_out <= "11111111";
|
||||
else
|
||||
case Adr(1 downto 0) is
|
||||
when "00" => J9_out <= "11101110";
|
||||
when "01" => J9_out <= "11011101";
|
||||
when "10" => J9_out <= "10111011";
|
||||
when "11" => J9_out <= "01110111";
|
||||
end case;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Re-order the dip switch signals to match the physical order of the switches
|
||||
-- Bank 1
|
||||
DipSW(7) <= J9_out(7) or SW1(1);
|
||||
DipSW(6) <= J9_out(6) or SW1(3);
|
||||
DipSW(5) <= J9_out(5) or SW1(5);
|
||||
DipSW(4) <= J9_out(4) or SW1(7);
|
||||
|
||||
--Bank 2
|
||||
DipSW(3) <= J9_out(3) or SW1(0);
|
||||
DipSW(2) <= J9_out(2) or SW1(2);
|
||||
DipSW(1) <= J9_out(1) or SW1(4);
|
||||
DipSW(0) <= J9_out(0) or SW1(6);
|
||||
|
||||
-- Outputs from each switch bank are tied together, logical AND since they are active low
|
||||
SW1_bank1 <= DipSW(7) and DipSW(6) and DipSW(5) and DipSW(4);
|
||||
SW1_bank2 <= DipSW(3) and DipSW(2) and DipSW(1) and DipSW(0);
|
||||
|
||||
-- Bank 1 of dip switches is multiplexed with player inputs connected to selectors F9 and H9
|
||||
A8_8 <= SW1_bank1 and H9_Q_n;
|
||||
|
||||
end rtl;
|
||||
551
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/T65/T65.vhd
Normal file
551
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/T65/T65.vhd
Normal file
@@ -0,0 +1,551 @@
|
||||
-- ****
|
||||
-- T65(b) core. In an effort to merge and maintain bug fixes ....
|
||||
--
|
||||
--
|
||||
-- Ver 301 more merging
|
||||
-- Ver 300 Bugfixes by ehenciak added, started tidyup *bust*
|
||||
-- MikeJ March 2005
|
||||
-- Latest version from www.fpgaarcade.com (original www.opencores.org)
|
||||
--
|
||||
-- ****
|
||||
--
|
||||
-- 65xx compatible microprocessor core
|
||||
--
|
||||
-- Version : 0246
|
||||
--
|
||||
-- Copyright (c) 2002 Daniel Wallner (jesus@opencores.org)
|
||||
--
|
||||
-- All rights reserved
|
||||
--
|
||||
-- Redistribution and use in source and synthezised forms, with or without
|
||||
-- modification, are permitted provided that the following conditions are met:
|
||||
--
|
||||
-- Redistributions of source code must retain the above copyright notice,
|
||||
-- this list of conditions and the following disclaimer.
|
||||
--
|
||||
-- Redistributions in synthesized form must reproduce the above copyright
|
||||
-- notice, this list of conditions and the following disclaimer in the
|
||||
-- documentation and/or other materials provided with the distribution.
|
||||
--
|
||||
-- Neither the name of the author nor the names of other contributors may
|
||||
-- be used to endorse or promote products derived from this software without
|
||||
-- specific prior written permission.
|
||||
--
|
||||
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||
-- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
-- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE
|
||||
-- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
-- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
-- POSSIBILITY OF SUCH DAMAGE.
|
||||
--
|
||||
-- Please report bugs to the author, but before you do so, please
|
||||
-- make sure that this is not a derivative work and that
|
||||
-- you have the latest version of this file.
|
||||
--
|
||||
-- The latest version of this file can be found at:
|
||||
-- http://www.opencores.org/cvsweb.shtml/t65/
|
||||
--
|
||||
-- Limitations :
|
||||
--
|
||||
-- 65C02 and 65C816 modes are incomplete
|
||||
-- Undocumented instructions are not supported
|
||||
-- Some interface signals behaves incorrect
|
||||
--
|
||||
-- File history :
|
||||
--
|
||||
-- 0246 : First release
|
||||
--
|
||||
|
||||
library IEEE;
|
||||
use IEEE.std_logic_1164.all;
|
||||
use IEEE.numeric_std.all;
|
||||
use work.T65_Pack.all;
|
||||
|
||||
-- ehenciak 2-23-2005 : Added the enable signal so that one doesn't have to use
|
||||
-- the ready signal to limit the CPU.
|
||||
entity T65 is
|
||||
port(
|
||||
Mode : in std_logic_vector(1 downto 0); -- "00" => 6502, "01" => 65C02, "10" => 65C816
|
||||
Res_n : in std_logic;
|
||||
Enable : in std_logic;
|
||||
Clk : in std_logic;
|
||||
Rdy : in std_logic;
|
||||
Abort_n : in std_logic;
|
||||
IRQ_n : in std_logic;
|
||||
NMI_n : in std_logic;
|
||||
SO_n : in std_logic;
|
||||
R_W_n : out std_logic;
|
||||
Sync : out std_logic;
|
||||
EF : out std_logic;
|
||||
MF : out std_logic;
|
||||
XF : out std_logic;
|
||||
ML_n : out std_logic;
|
||||
VP_n : out std_logic;
|
||||
VDA : out std_logic;
|
||||
VPA : out std_logic;
|
||||
A : out std_logic_vector(23 downto 0);
|
||||
DI : in std_logic_vector(7 downto 0);
|
||||
DO : out std_logic_vector(7 downto 0)
|
||||
);
|
||||
end T65;
|
||||
|
||||
architecture rtl of T65 is
|
||||
|
||||
-- Registers
|
||||
signal ABC, X, Y, D : std_logic_vector(15 downto 0);
|
||||
signal P, AD, DL : std_logic_vector(7 downto 0) := x"00";
|
||||
signal BAH : std_logic_vector(7 downto 0);
|
||||
signal BAL : std_logic_vector(8 downto 0);
|
||||
signal PBR : std_logic_vector(7 downto 0);
|
||||
signal DBR : std_logic_vector(7 downto 0);
|
||||
signal PC : unsigned(15 downto 0);
|
||||
signal S : unsigned(15 downto 0);
|
||||
signal EF_i : std_logic;
|
||||
signal MF_i : std_logic;
|
||||
signal XF_i : std_logic;
|
||||
|
||||
signal IR : std_logic_vector(7 downto 0);
|
||||
signal MCycle : std_logic_vector(2 downto 0);
|
||||
|
||||
signal Mode_r : std_logic_vector(1 downto 0);
|
||||
signal ALU_Op_r : std_logic_vector(3 downto 0);
|
||||
signal Write_Data_r : std_logic_vector(2 downto 0);
|
||||
signal Set_Addr_To_r : std_logic_vector(1 downto 0);
|
||||
signal PCAdder : unsigned(8 downto 0);
|
||||
|
||||
signal RstCycle : std_logic;
|
||||
signal IRQCycle : std_logic;
|
||||
signal NMICycle : std_logic;
|
||||
|
||||
signal B_o : std_logic;
|
||||
signal SO_n_o : std_logic;
|
||||
signal IRQ_n_o : std_logic;
|
||||
signal NMI_n_o : std_logic;
|
||||
signal NMIAct : std_logic;
|
||||
|
||||
signal Break : std_logic;
|
||||
|
||||
-- ALU signals
|
||||
signal BusA : std_logic_vector(7 downto 0);
|
||||
signal BusA_r : std_logic_vector(7 downto 0);
|
||||
signal BusB : std_logic_vector(7 downto 0);
|
||||
signal ALU_Q : std_logic_vector(7 downto 0);
|
||||
signal P_Out : std_logic_vector(7 downto 0);
|
||||
|
||||
-- Micro code outputs
|
||||
signal LCycle : std_logic_vector(2 downto 0);
|
||||
signal ALU_Op : std_logic_vector(3 downto 0);
|
||||
signal Set_BusA_To : std_logic_vector(2 downto 0);
|
||||
signal Set_Addr_To : std_logic_vector(1 downto 0);
|
||||
signal Write_Data : std_logic_vector(2 downto 0);
|
||||
signal Jump : std_logic_vector(1 downto 0);
|
||||
signal BAAdd : std_logic_vector(1 downto 0);
|
||||
signal BreakAtNA : std_logic;
|
||||
signal ADAdd : std_logic;
|
||||
signal AddY : std_logic;
|
||||
signal PCAdd : std_logic;
|
||||
signal Inc_S : std_logic;
|
||||
signal Dec_S : std_logic;
|
||||
signal LDA : std_logic;
|
||||
signal LDP : std_logic;
|
||||
signal LDX : std_logic;
|
||||
signal LDY : std_logic;
|
||||
signal LDS : std_logic;
|
||||
signal LDDI : std_logic;
|
||||
signal LDALU : std_logic;
|
||||
signal LDAD : std_logic;
|
||||
signal LDBAL : std_logic;
|
||||
signal LDBAH : std_logic;
|
||||
signal SaveP : std_logic;
|
||||
signal Write : std_logic;
|
||||
|
||||
signal really_rdy : std_logic;
|
||||
signal R_W_n_i : std_logic;
|
||||
|
||||
begin
|
||||
-- ehenciak : gate Rdy with read/write to make an "OK, it's
|
||||
-- really OK to stop the processor now if Rdy is
|
||||
-- deasserted" signal
|
||||
really_rdy <= Rdy or not(R_W_n_i);
|
||||
|
||||
-- ehenciak : Drive R_W_n_i off chip.
|
||||
R_W_n <= R_W_n_i;
|
||||
|
||||
Sync <= '1' when MCycle = "000" else '0';
|
||||
EF <= EF_i;
|
||||
MF <= MF_i;
|
||||
XF <= XF_i;
|
||||
ML_n <= '0' when IR(7 downto 6) /= "10" and IR(2 downto 1) = "11" and MCycle(2 downto 1) /= "00" else '1';
|
||||
VP_n <= '0' when IRQCycle = '1' and (MCycle = "101" or MCycle = "110") else '1';
|
||||
VDA <= '1' when Set_Addr_To_r /= "000" else '0'; -- Incorrect !!!!!!!!!!!!
|
||||
VPA <= '1' when Jump(1) = '0' else '0'; -- Incorrect !!!!!!!!!!!!
|
||||
|
||||
mcode : T65_MCode
|
||||
port map(
|
||||
Mode => Mode_r,
|
||||
IR => IR,
|
||||
MCycle => MCycle,
|
||||
P => P,
|
||||
LCycle => LCycle,
|
||||
ALU_Op => ALU_Op,
|
||||
Set_BusA_To => Set_BusA_To,
|
||||
Set_Addr_To => Set_Addr_To,
|
||||
Write_Data => Write_Data,
|
||||
Jump => Jump,
|
||||
BAAdd => BAAdd,
|
||||
BreakAtNA => BreakAtNA,
|
||||
ADAdd => ADAdd,
|
||||
AddY => AddY,
|
||||
PCAdd => PCAdd,
|
||||
Inc_S => Inc_S,
|
||||
Dec_S => Dec_S,
|
||||
LDA => LDA,
|
||||
LDP => LDP,
|
||||
LDX => LDX,
|
||||
LDY => LDY,
|
||||
LDS => LDS,
|
||||
LDDI => LDDI,
|
||||
LDALU => LDALU,
|
||||
LDAD => LDAD,
|
||||
LDBAL => LDBAL,
|
||||
LDBAH => LDBAH,
|
||||
SaveP => SaveP,
|
||||
Write => Write
|
||||
);
|
||||
|
||||
alu : T65_ALU
|
||||
port map(
|
||||
Mode => Mode_r,
|
||||
Op => ALU_Op_r,
|
||||
BusA => BusA_r,
|
||||
BusB => BusB,
|
||||
P_In => P,
|
||||
P_Out => P_Out,
|
||||
Q => ALU_Q
|
||||
);
|
||||
|
||||
process (Res_n, Clk)
|
||||
begin
|
||||
if Res_n = '0' then
|
||||
PC <= (others => '0'); -- Program Counter
|
||||
IR <= "00000000";
|
||||
S <= (others => '0'); -- Dummy !!!!!!!!!!!!!!!!!!!!!
|
||||
D <= (others => '0');
|
||||
PBR <= (others => '0');
|
||||
DBR <= (others => '0');
|
||||
|
||||
Mode_r <= (others => '0');
|
||||
ALU_Op_r <= "1100";
|
||||
Write_Data_r <= "000";
|
||||
Set_Addr_To_r <= "00";
|
||||
|
||||
R_W_n_i <= '1';
|
||||
EF_i <= '1';
|
||||
MF_i <= '1';
|
||||
XF_i <= '1';
|
||||
|
||||
elsif Clk'event and Clk = '1' then
|
||||
if (Enable = '1') then
|
||||
if (really_rdy = '1') then
|
||||
R_W_n_i <= not Write or RstCycle;
|
||||
|
||||
D <= (others => '1'); -- Dummy
|
||||
PBR <= (others => '1'); -- Dummy
|
||||
DBR <= (others => '1'); -- Dummy
|
||||
EF_i <= '0'; -- Dummy
|
||||
MF_i <= '0'; -- Dummy
|
||||
XF_i <= '0'; -- Dummy
|
||||
|
||||
if MCycle = "000" then
|
||||
Mode_r <= Mode;
|
||||
|
||||
if IRQCycle = '0' and NMICycle = '0' then
|
||||
PC <= PC + 1;
|
||||
end if;
|
||||
|
||||
if IRQCycle = '1' or NMICycle = '1' then
|
||||
IR <= "00000000";
|
||||
else
|
||||
IR <= DI;
|
||||
end if;
|
||||
end if;
|
||||
|
||||
ALU_Op_r <= ALU_Op;
|
||||
Write_Data_r <= Write_Data;
|
||||
if Break = '1' then
|
||||
Set_Addr_To_r <= "00";
|
||||
else
|
||||
Set_Addr_To_r <= Set_Addr_To;
|
||||
end if;
|
||||
|
||||
if Inc_S = '1' then
|
||||
S <= S + 1;
|
||||
end if;
|
||||
if Dec_S = '1' and RstCycle = '0' then
|
||||
S <= S - 1;
|
||||
end if;
|
||||
if LDS = '1' then
|
||||
S(7 downto 0) <= unsigned(ALU_Q);
|
||||
end if;
|
||||
|
||||
if IR = "00000000" and MCycle = "001" and IRQCycle = '0' and NMICycle = '0' then
|
||||
PC <= PC + 1;
|
||||
end if;
|
||||
--
|
||||
-- jump control logic
|
||||
--
|
||||
case Jump is
|
||||
when "01" =>
|
||||
PC <= PC + 1;
|
||||
|
||||
when "10" =>
|
||||
PC <= unsigned(DI & DL);
|
||||
|
||||
when "11" =>
|
||||
if PCAdder(8) = '1' then
|
||||
if DL(7) = '0' then
|
||||
PC(15 downto 8) <= PC(15 downto 8) + 1;
|
||||
else
|
||||
PC(15 downto 8) <= PC(15 downto 8) - 1;
|
||||
end if;
|
||||
end if;
|
||||
PC(7 downto 0) <= PCAdder(7 downto 0);
|
||||
|
||||
when others => null;
|
||||
end case;
|
||||
end if;
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
PCAdder <= resize(PC(7 downto 0),9) + resize(unsigned(DL(7) & DL),9) when PCAdd = '1'
|
||||
else "0" & PC(7 downto 0);
|
||||
|
||||
process (Clk)
|
||||
begin
|
||||
if Clk'event and Clk = '1' then
|
||||
if (Enable = '1') then
|
||||
if (really_rdy = '1') then
|
||||
if MCycle = "000" then
|
||||
if LDA = '1' then
|
||||
ABC(7 downto 0) <= ALU_Q;
|
||||
end if;
|
||||
if LDX = '1' then
|
||||
X(7 downto 0) <= ALU_Q;
|
||||
end if;
|
||||
if LDY = '1' then
|
||||
Y(7 downto 0) <= ALU_Q;
|
||||
end if;
|
||||
if (LDA or LDX or LDY) = '1' then
|
||||
P <= P_Out;
|
||||
end if;
|
||||
end if;
|
||||
if SaveP = '1' then
|
||||
P <= P_Out;
|
||||
end if;
|
||||
if LDP = '1' then
|
||||
P <= ALU_Q;
|
||||
end if;
|
||||
if IR(4 downto 0) = "11000" then
|
||||
case IR(7 downto 5) is
|
||||
when "000" =>
|
||||
P(Flag_C) <= '0';
|
||||
when "001" =>
|
||||
P(Flag_C) <= '1';
|
||||
when "010" =>
|
||||
P(Flag_I) <= '0';
|
||||
when "011" =>
|
||||
P(Flag_I) <= '1';
|
||||
when "101" =>
|
||||
P(Flag_V) <= '0';
|
||||
when "110" =>
|
||||
P(Flag_D) <= '0';
|
||||
when "111" =>
|
||||
P(Flag_D) <= '1';
|
||||
when others =>
|
||||
end case;
|
||||
end if;
|
||||
if IR = "00000000" and MCycle = "011" and RstCycle = '0' and NMICycle = '0' and IRQCycle = '0' then
|
||||
P(Flag_B) <= '1';
|
||||
end if;
|
||||
if IR = "00000000" and MCycle = "100" and RstCycle = '0' and (NMICycle = '1' or IRQCycle = '1') then
|
||||
P(Flag_I) <= '1';
|
||||
P(Flag_B) <= B_o;
|
||||
end if;
|
||||
if SO_n_o = '1' and SO_n = '0' then
|
||||
P(Flag_V) <= '1';
|
||||
end if;
|
||||
if RstCycle = '1' and Mode_r /= "00" then
|
||||
P(Flag_1) <= '1';
|
||||
P(Flag_D) <= '0';
|
||||
P(Flag_I) <= '1';
|
||||
end if;
|
||||
P(Flag_1) <= '1';
|
||||
|
||||
B_o <= P(Flag_B);
|
||||
SO_n_o <= SO_n;
|
||||
IRQ_n_o <= IRQ_n;
|
||||
NMI_n_o <= NMI_n;
|
||||
end if;
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
---------------------------------------------------------------------------
|
||||
--
|
||||
-- Buses
|
||||
--
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
process (Res_n, Clk)
|
||||
begin
|
||||
if Res_n = '0' then
|
||||
BusA_r <= (others => '0');
|
||||
BusB <= (others => '0');
|
||||
AD <= (others => '0');
|
||||
BAL <= (others => '0');
|
||||
BAH <= (others => '0');
|
||||
DL <= (others => '0');
|
||||
elsif Clk'event and Clk = '1' then
|
||||
if (Enable = '1') then
|
||||
if (Rdy = '1') then
|
||||
BusA_r <= BusA;
|
||||
BusB <= DI;
|
||||
|
||||
case BAAdd is
|
||||
when "01" =>
|
||||
-- BA Inc
|
||||
AD <= std_logic_vector(unsigned(AD) + 1);
|
||||
BAL <= std_logic_vector(unsigned(BAL) + 1);
|
||||
when "10" =>
|
||||
-- BA Add
|
||||
BAL <= std_logic_vector(resize(unsigned(BAL(7 downto 0)),9) + resize(unsigned(BusA),9));
|
||||
when "11" =>
|
||||
-- BA Adj
|
||||
if BAL(8) = '1' then
|
||||
BAH <= std_logic_vector(unsigned(BAH) + 1);
|
||||
end if;
|
||||
when others =>
|
||||
end case;
|
||||
|
||||
-- ehenciak : modified to use Y register as well (bugfix)
|
||||
if ADAdd = '1' then
|
||||
if (AddY = '1') then
|
||||
AD <= std_logic_vector(unsigned(AD) + unsigned(Y(7 downto 0)));
|
||||
else
|
||||
AD <= std_logic_vector(unsigned(AD) + unsigned(X(7 downto 0)));
|
||||
end if;
|
||||
end if;
|
||||
|
||||
if IR = "00000000" then
|
||||
BAL <= (others => '1');
|
||||
BAH <= (others => '1');
|
||||
if RstCycle = '1' then
|
||||
BAL(2 downto 0) <= "100";
|
||||
elsif NMICycle = '1' then
|
||||
BAL(2 downto 0) <= "010";
|
||||
else
|
||||
BAL(2 downto 0) <= "110";
|
||||
end if;
|
||||
if Set_addr_To_r = "11" then
|
||||
BAL(0) <= '1';
|
||||
end if;
|
||||
end if;
|
||||
|
||||
|
||||
if LDDI = '1' then
|
||||
DL <= DI;
|
||||
end if;
|
||||
if LDALU = '1' then
|
||||
DL <= ALU_Q;
|
||||
end if;
|
||||
if LDAD = '1' then
|
||||
AD <= DI;
|
||||
end if;
|
||||
if LDBAL = '1' then
|
||||
BAL(7 downto 0) <= DI;
|
||||
end if;
|
||||
if LDBAH = '1' then
|
||||
BAH <= DI;
|
||||
end if;
|
||||
end if;
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
Break <= (BreakAtNA and not BAL(8)) or (PCAdd and not PCAdder(8));
|
||||
|
||||
|
||||
with Set_BusA_To select
|
||||
BusA <= DI when "000",
|
||||
ABC(7 downto 0) when "001",
|
||||
X(7 downto 0) when "010",
|
||||
Y(7 downto 0) when "011",
|
||||
std_logic_vector(S(7 downto 0)) when "100",
|
||||
P when "101",
|
||||
(others => '-') when others;
|
||||
|
||||
with Set_Addr_To_r select
|
||||
A <= "0000000000000001" & std_logic_vector(S(7 downto 0)) when "01",
|
||||
DBR & "00000000" & AD when "10",
|
||||
"00000000" & BAH & BAL(7 downto 0) when "11",
|
||||
PBR & std_logic_vector(PC(15 downto 8)) & std_logic_vector(PCAdder(7 downto 0)) when others;
|
||||
|
||||
with Write_Data_r select
|
||||
DO <= DL when "000",
|
||||
ABC(7 downto 0) when "001",
|
||||
X(7 downto 0) when "010",
|
||||
Y(7 downto 0) when "011",
|
||||
std_logic_vector(S(7 downto 0)) when "100",
|
||||
P when "101",
|
||||
std_logic_vector(PC(7 downto 0)) when "110",
|
||||
std_logic_vector(PC(15 downto 8)) when others;
|
||||
|
||||
-------------------------------------------------------------------------
|
||||
--
|
||||
-- Main state machine
|
||||
--
|
||||
-------------------------------------------------------------------------
|
||||
|
||||
process (Res_n, Clk)
|
||||
begin
|
||||
if Res_n = '0' then
|
||||
MCycle <= "001";
|
||||
RstCycle <= '1';
|
||||
IRQCycle <= '0';
|
||||
NMICycle <= '0';
|
||||
NMIAct <= '0';
|
||||
elsif Clk'event and Clk = '1' then
|
||||
if (Enable = '1') then
|
||||
if (really_rdy = '1') then
|
||||
if MCycle = LCycle or Break = '1' then
|
||||
MCycle <= "000";
|
||||
RstCycle <= '0';
|
||||
IRQCycle <= '0';
|
||||
NMICycle <= '0';
|
||||
if NMIAct = '1' then
|
||||
NMICycle <= '1';
|
||||
elsif IRQ_n_o = '0' and P(Flag_I) = '0' then
|
||||
IRQCycle <= '1';
|
||||
end if;
|
||||
else
|
||||
MCycle <= std_logic_vector(unsigned(MCycle) + 1);
|
||||
end if;
|
||||
|
||||
if NMICycle = '1' then
|
||||
NMIAct <= '0';
|
||||
end if;
|
||||
if NMI_n_o = '1' and NMI_n = '0' then
|
||||
NMIAct <= '1';
|
||||
end if;
|
||||
end if;
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
end;
|
||||
260
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/T65/T65_ALU.vhd
Normal file
260
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/T65/T65_ALU.vhd
Normal file
@@ -0,0 +1,260 @@
|
||||
-- ****
|
||||
-- T65(b) core. In an effort to merge and maintain bug fixes ....
|
||||
--
|
||||
--
|
||||
-- Ver 300 Bugfixes by ehenciak added
|
||||
-- MikeJ March 2005
|
||||
-- Latest version from www.fpgaarcade.com (original www.opencores.org)
|
||||
--
|
||||
-- ****
|
||||
--
|
||||
-- 6502 compatible microprocessor core
|
||||
--
|
||||
-- Version : 0245
|
||||
--
|
||||
-- Copyright (c) 2002 Daniel Wallner (jesus@opencores.org)
|
||||
--
|
||||
-- All rights reserved
|
||||
--
|
||||
-- Redistribution and use in source and synthezised forms, with or without
|
||||
-- modification, are permitted provided that the following conditions are met:
|
||||
--
|
||||
-- Redistributions of source code must retain the above copyright notice,
|
||||
-- this list of conditions and the following disclaimer.
|
||||
--
|
||||
-- Redistributions in synthesized form must reproduce the above copyright
|
||||
-- notice, this list of conditions and the following disclaimer in the
|
||||
-- documentation and/or other materials provided with the distribution.
|
||||
--
|
||||
-- Neither the name of the author nor the names of other contributors may
|
||||
-- be used to endorse or promote products derived from this software without
|
||||
-- specific prior written permission.
|
||||
--
|
||||
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||
-- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
-- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE
|
||||
-- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
-- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
-- POSSIBILITY OF SUCH DAMAGE.
|
||||
--
|
||||
-- Please report bugs to the author, but before you do so, please
|
||||
-- make sure that this is not a derivative work and that
|
||||
-- you have the latest version of this file.
|
||||
--
|
||||
-- The latest version of this file can be found at:
|
||||
-- http://www.opencores.org/cvsweb.shtml/t65/
|
||||
--
|
||||
-- Limitations :
|
||||
--
|
||||
-- File history :
|
||||
--
|
||||
-- 0245 : First version
|
||||
--
|
||||
|
||||
library IEEE;
|
||||
use IEEE.std_logic_1164.all;
|
||||
use IEEE.numeric_std.all;
|
||||
use work.T65_Pack.all;
|
||||
|
||||
entity T65_ALU is
|
||||
port(
|
||||
Mode : in std_logic_vector(1 downto 0); -- "00" => 6502, "01" => 65C02, "10" => 65816
|
||||
Op : in std_logic_vector(3 downto 0);
|
||||
BusA : in std_logic_vector(7 downto 0);
|
||||
BusB : in std_logic_vector(7 downto 0);
|
||||
P_In : in std_logic_vector(7 downto 0);
|
||||
P_Out : out std_logic_vector(7 downto 0);
|
||||
Q : out std_logic_vector(7 downto 0)
|
||||
);
|
||||
end T65_ALU;
|
||||
|
||||
architecture rtl of T65_ALU is
|
||||
|
||||
-- AddSub variables (temporary signals)
|
||||
signal ADC_Z : std_logic;
|
||||
signal ADC_C : std_logic;
|
||||
signal ADC_V : std_logic;
|
||||
signal ADC_N : std_logic;
|
||||
signal ADC_Q : std_logic_vector(7 downto 0);
|
||||
signal SBC_Z : std_logic;
|
||||
signal SBC_C : std_logic;
|
||||
signal SBC_V : std_logic;
|
||||
signal SBC_N : std_logic;
|
||||
signal SBC_Q : std_logic_vector(7 downto 0);
|
||||
|
||||
begin
|
||||
|
||||
process (P_In, BusA, BusB)
|
||||
variable AL : unsigned(6 downto 0);
|
||||
variable AH : unsigned(6 downto 0);
|
||||
variable C : std_logic;
|
||||
begin
|
||||
AL := resize(unsigned(BusA(3 downto 0) & P_In(Flag_C)), 7) + resize(unsigned(BusB(3 downto 0) & "1"), 7);
|
||||
AH := resize(unsigned(BusA(7 downto 4) & AL(5)), 7) + resize(unsigned(BusB(7 downto 4) & "1"), 7);
|
||||
|
||||
-- pragma translate_off
|
||||
if is_x(std_logic_vector(AL)) then AL := "0000000"; end if;
|
||||
if is_x(std_logic_vector(AH)) then AH := "0000000"; end if;
|
||||
-- pragma translate_on
|
||||
|
||||
if AL(4 downto 1) = 0 and AH(4 downto 1) = 0 then
|
||||
ADC_Z <= '1';
|
||||
else
|
||||
ADC_Z <= '0';
|
||||
end if;
|
||||
|
||||
if AL(5 downto 1) > 9 and P_In(Flag_D) = '1' then
|
||||
AL(6 downto 1) := AL(6 downto 1) + 6;
|
||||
end if;
|
||||
|
||||
C := AL(6) or AL(5);
|
||||
AH := resize(unsigned(BusA(7 downto 4) & C), 7) + resize(unsigned(BusB(7 downto 4) & "1"), 7);
|
||||
|
||||
ADC_N <= AH(4);
|
||||
ADC_V <= (AH(4) xor BusA(7)) and not (BusA(7) xor BusB(7));
|
||||
|
||||
-- pragma translate_off
|
||||
if is_x(std_logic_vector(AH)) then AH := "0000000"; end if;
|
||||
-- pragma translate_on
|
||||
|
||||
if AH(5 downto 1) > 9 and P_In(Flag_D) = '1' then
|
||||
AH(6 downto 1) := AH(6 downto 1) + 6;
|
||||
end if;
|
||||
|
||||
ADC_C <= AH(6) or AH(5);
|
||||
|
||||
ADC_Q <= std_logic_vector(AH(4 downto 1) & AL(4 downto 1));
|
||||
end process;
|
||||
|
||||
process (Op, P_In, BusA, BusB)
|
||||
variable AL : unsigned(6 downto 0);
|
||||
variable AH : unsigned(5 downto 0);
|
||||
variable C : std_logic;
|
||||
begin
|
||||
C := P_In(Flag_C) or not Op(0);
|
||||
AL := resize(unsigned(BusA(3 downto 0) & C), 7) - resize(unsigned(BusB(3 downto 0) & "1"), 6);
|
||||
AH := resize(unsigned(BusA(7 downto 4) & "0"), 6) - resize(unsigned(BusB(7 downto 4) & AL(5)), 6);
|
||||
|
||||
-- pragma translate_off
|
||||
if is_x(std_logic_vector(AL)) then AL := "0000000"; end if;
|
||||
if is_x(std_logic_vector(AH)) then AH := "000000"; end if;
|
||||
-- pragma translate_on
|
||||
|
||||
if AL(4 downto 1) = 0 and AH(4 downto 1) = 0 then
|
||||
SBC_Z <= '1';
|
||||
else
|
||||
SBC_Z <= '0';
|
||||
end if;
|
||||
|
||||
SBC_C <= not AH(5);
|
||||
SBC_V <= (AH(4) xor BusA(7)) and (BusA(7) xor BusB(7));
|
||||
SBC_N <= AH(4);
|
||||
|
||||
if P_In(Flag_D) = '1' then
|
||||
if AL(5) = '1' then
|
||||
AL(5 downto 1) := AL(5 downto 1) - 6;
|
||||
end if;
|
||||
AH := resize(unsigned(BusA(7 downto 4) & "0"), 6) - resize(unsigned(BusB(7 downto 4) & AL(6)), 6);
|
||||
if AH(5) = '1' then
|
||||
AH(5 downto 1) := AH(5 downto 1) - 6;
|
||||
end if;
|
||||
end if;
|
||||
|
||||
SBC_Q <= std_logic_vector(AH(4 downto 1) & AL(4 downto 1));
|
||||
end process;
|
||||
|
||||
process (Op, P_In, BusA, BusB,
|
||||
ADC_Z, ADC_C, ADC_V, ADC_N, ADC_Q,
|
||||
SBC_Z, SBC_C, SBC_V, SBC_N, SBC_Q)
|
||||
variable Q_t : std_logic_vector(7 downto 0);
|
||||
begin
|
||||
-- ORA, AND, EOR, ADC, NOP, LD, CMP, SBC
|
||||
-- ASL, ROL, LSR, ROR, BIT, LD, DEC, INC
|
||||
P_Out <= P_In;
|
||||
Q_t := BusA;
|
||||
case Op(3 downto 0) is
|
||||
when "0000" =>
|
||||
-- ORA
|
||||
Q_t := BusA or BusB;
|
||||
when "0001" =>
|
||||
-- AND
|
||||
Q_t := BusA and BusB;
|
||||
when "0010" =>
|
||||
-- EOR
|
||||
Q_t := BusA xor BusB;
|
||||
when "0011" =>
|
||||
-- ADC
|
||||
P_Out(Flag_V) <= ADC_V;
|
||||
P_Out(Flag_C) <= ADC_C;
|
||||
Q_t := ADC_Q;
|
||||
when "0101" | "1101" =>
|
||||
-- LDA
|
||||
when "0110" =>
|
||||
-- CMP
|
||||
P_Out(Flag_C) <= SBC_C;
|
||||
when "0111" =>
|
||||
-- SBC
|
||||
P_Out(Flag_V) <= SBC_V;
|
||||
P_Out(Flag_C) <= SBC_C;
|
||||
Q_t := SBC_Q;
|
||||
when "1000" =>
|
||||
-- ASL
|
||||
Q_t := BusA(6 downto 0) & "0";
|
||||
P_Out(Flag_C) <= BusA(7);
|
||||
when "1001" =>
|
||||
-- ROL
|
||||
Q_t := BusA(6 downto 0) & P_In(Flag_C);
|
||||
P_Out(Flag_C) <= BusA(7);
|
||||
when "1010" =>
|
||||
-- LSR
|
||||
Q_t := "0" & BusA(7 downto 1);
|
||||
P_Out(Flag_C) <= BusA(0);
|
||||
when "1011" =>
|
||||
-- ROR
|
||||
Q_t := P_In(Flag_C) & BusA(7 downto 1);
|
||||
P_Out(Flag_C) <= BusA(0);
|
||||
when "1100" =>
|
||||
-- BIT
|
||||
P_Out(Flag_V) <= BusB(6);
|
||||
when "1110" =>
|
||||
-- DEC
|
||||
Q_t := std_logic_vector(unsigned(BusA) - 1);
|
||||
when "1111" =>
|
||||
-- INC
|
||||
Q_t := std_logic_vector(unsigned(BusA) + 1);
|
||||
when others =>
|
||||
end case;
|
||||
|
||||
case Op(3 downto 0) is
|
||||
when "0011" =>
|
||||
P_Out(Flag_N) <= ADC_N;
|
||||
P_Out(Flag_Z) <= ADC_Z;
|
||||
when "0110" | "0111" =>
|
||||
P_Out(Flag_N) <= SBC_N;
|
||||
P_Out(Flag_Z) <= SBC_Z;
|
||||
when "0100" =>
|
||||
when "1100" =>
|
||||
P_Out(Flag_N) <= BusB(7);
|
||||
if (BusA and BusB) = "00000000" then
|
||||
P_Out(Flag_Z) <= '1';
|
||||
else
|
||||
P_Out(Flag_Z) <= '0';
|
||||
end if;
|
||||
when others =>
|
||||
P_Out(Flag_N) <= Q_t(7);
|
||||
if Q_t = "00000000" then
|
||||
P_Out(Flag_Z) <= '1';
|
||||
else
|
||||
P_Out(Flag_Z) <= '0';
|
||||
end if;
|
||||
end case;
|
||||
|
||||
Q <= Q_t;
|
||||
end process;
|
||||
|
||||
end;
|
||||
1050
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/T65/T65_MCode.vhd
Normal file
1050
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/T65/T65_MCode.vhd
Normal file
File diff suppressed because it is too large
Load Diff
117
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/T65/T65_Pack.vhd
Normal file
117
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/T65/T65_Pack.vhd
Normal file
@@ -0,0 +1,117 @@
|
||||
-- ****
|
||||
-- T65(b) core. In an effort to merge and maintain bug fixes ....
|
||||
--
|
||||
--
|
||||
-- Ver 300 Bugfixes by ehenciak added
|
||||
-- MikeJ March 2005
|
||||
-- Latest version from www.fpgaarcade.com (original www.opencores.org)
|
||||
--
|
||||
-- ****
|
||||
--
|
||||
-- 65xx compatible microprocessor core
|
||||
--
|
||||
-- Version : 0246
|
||||
--
|
||||
-- Copyright (c) 2002 Daniel Wallner (jesus@opencores.org)
|
||||
--
|
||||
-- All rights reserved
|
||||
--
|
||||
-- Redistribution and use in source and synthezised forms, with or without
|
||||
-- modification, are permitted provided that the following conditions are met:
|
||||
--
|
||||
-- Redistributions of source code must retain the above copyright notice,
|
||||
-- this list of conditions and the following disclaimer.
|
||||
--
|
||||
-- Redistributions in synthesized form must reproduce the above copyright
|
||||
-- notice, this list of conditions and the following disclaimer in the
|
||||
-- documentation and/or other materials provided with the distribution.
|
||||
--
|
||||
-- Neither the name of the author nor the names of other contributors may
|
||||
-- be used to endorse or promote products derived from this software without
|
||||
-- specific prior written permission.
|
||||
--
|
||||
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||
-- THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
-- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE
|
||||
-- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
-- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
-- POSSIBILITY OF SUCH DAMAGE.
|
||||
--
|
||||
-- Please report bugs to the author, but before you do so, please
|
||||
-- make sure that this is not a derivative work and that
|
||||
-- you have the latest version of this file.
|
||||
--
|
||||
-- The latest version of this file can be found at:
|
||||
-- http://www.opencores.org/cvsweb.shtml/t65/
|
||||
--
|
||||
-- Limitations :
|
||||
--
|
||||
-- File history :
|
||||
--
|
||||
|
||||
library IEEE;
|
||||
use IEEE.std_logic_1164.all;
|
||||
|
||||
package T65_Pack is
|
||||
|
||||
constant Flag_C : integer := 0;
|
||||
constant Flag_Z : integer := 1;
|
||||
constant Flag_I : integer := 2;
|
||||
constant Flag_D : integer := 3;
|
||||
constant Flag_B : integer := 4;
|
||||
constant Flag_1 : integer := 5;
|
||||
constant Flag_V : integer := 6;
|
||||
constant Flag_N : integer := 7;
|
||||
|
||||
component T65_MCode
|
||||
port(
|
||||
Mode : in std_logic_vector(1 downto 0); -- "00" => 6502, "01" => 65C02, "10" => 65816
|
||||
IR : in std_logic_vector(7 downto 0);
|
||||
MCycle : in std_logic_vector(2 downto 0);
|
||||
P : in std_logic_vector(7 downto 0);
|
||||
LCycle : out std_logic_vector(2 downto 0);
|
||||
ALU_Op : out std_logic_vector(3 downto 0);
|
||||
Set_BusA_To : out std_logic_vector(2 downto 0); -- DI,A,X,Y,S,P
|
||||
Set_Addr_To : out std_logic_vector(1 downto 0); -- PC Adder,S,AD,BA
|
||||
Write_Data : out std_logic_vector(2 downto 0); -- DL,A,X,Y,S,P,PCL,PCH
|
||||
Jump : out std_logic_vector(1 downto 0); -- PC,++,DIDL,Rel
|
||||
BAAdd : out std_logic_vector(1 downto 0); -- None,DB Inc,BA Add,BA Adj
|
||||
BreakAtNA : out std_logic;
|
||||
ADAdd : out std_logic;
|
||||
AddY : out std_logic;
|
||||
PCAdd : out std_logic;
|
||||
Inc_S : out std_logic;
|
||||
Dec_S : out std_logic;
|
||||
LDA : out std_logic;
|
||||
LDP : out std_logic;
|
||||
LDX : out std_logic;
|
||||
LDY : out std_logic;
|
||||
LDS : out std_logic;
|
||||
LDDI : out std_logic;
|
||||
LDALU : out std_logic;
|
||||
LDAD : out std_logic;
|
||||
LDBAL : out std_logic;
|
||||
LDBAH : out std_logic;
|
||||
SaveP : out std_logic;
|
||||
Write : out std_logic
|
||||
);
|
||||
end component;
|
||||
|
||||
component T65_ALU
|
||||
port(
|
||||
Mode : in std_logic_vector(1 downto 0); -- "00" => 6502, "01" => 65C02, "10" => 65C816
|
||||
Op : in std_logic_vector(3 downto 0);
|
||||
BusA : in std_logic_vector(7 downto 0);
|
||||
BusB : in std_logic_vector(7 downto 0);
|
||||
P_In : in std_logic_vector(7 downto 0);
|
||||
P_Out : out std_logic_vector(7 downto 0);
|
||||
Q : out std_logic_vector(7 downto 0)
|
||||
);
|
||||
end component;
|
||||
|
||||
end;
|
||||
@@ -0,0 +1,2 @@
|
||||
`define BUILD_DATE "171221"
|
||||
`define BUILD_TIME "172231"
|
||||
35
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/build_id.tcl
Normal file
35
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/build_id.tcl
Normal file
@@ -0,0 +1,35 @@
|
||||
# ================================================================================
|
||||
#
|
||||
# Build ID Verilog Module Script
|
||||
# Jeff Wiencrot - 8/1/2011
|
||||
#
|
||||
# Generates a Verilog module that contains a timestamp,
|
||||
# from the current build. These values are available from the build_date, build_time,
|
||||
# physical_address, and host_name output ports of the build_id module in the build_id.v
|
||||
# Verilog source file.
|
||||
#
|
||||
# ================================================================================
|
||||
|
||||
proc generateBuildID_Verilog {} {
|
||||
|
||||
# Get the timestamp (see: http://www.altera.com/support/examples/tcl/tcl-date-time-stamp.html)
|
||||
set buildDate [ clock format [ clock seconds ] -format %y%m%d ]
|
||||
set buildTime [ clock format [ clock seconds ] -format %H%M%S ]
|
||||
|
||||
# Create a Verilog file for output
|
||||
set outputFileName "rtl/build_id.sv"
|
||||
set outputFile [open $outputFileName "w"]
|
||||
|
||||
# Output the Verilog source
|
||||
puts $outputFile "`define BUILD_DATE \"$buildDate\""
|
||||
puts $outputFile "`define BUILD_TIME \"$buildTime\""
|
||||
close $outputFile
|
||||
|
||||
# Send confirmation message to the Messages window
|
||||
post_message "Generated build identification Verilog module: [pwd]/$outputFileName"
|
||||
post_message "Date: $buildDate"
|
||||
post_message "Time: $buildTime"
|
||||
}
|
||||
|
||||
# Comment out this line to prevent the process from automatically executing when the file is sourced:
|
||||
generateBuildID_Verilog
|
||||
95
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/collision.vhd
Normal file
95
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/collision.vhd
Normal file
@@ -0,0 +1,95 @@
|
||||
-- Collision detection logic for for Kee Games Sprint 1
|
||||
-- This is called the "Car/Playfield Comparator" in the manual and works by comparing the
|
||||
-- video signals representing player and computer cars, track boundaries and oil slicks generating
|
||||
-- collision signals when multiple objects appear at the same time (location) in the video.
|
||||
-- Car 1 is the human player, Cars 2, 3 and Car 4 are computer controlled.
|
||||
--
|
||||
-- NOTE: There is an error in the original schematic, F8 pin 5 should go to CAR1 (not inverted) and
|
||||
-- F8 pin 9 to CAR2 (not inverted) while the schematic shows them connecting to the inverted signals
|
||||
--
|
||||
-- Tests for the following conditions:
|
||||
-- Car 1 equals Car 2
|
||||
-- Car 1 equals Car 3 or 4
|
||||
-- Car 1 equals Black Playfield (Oil slick)
|
||||
-- Car 1 equals White Playfield (Track boundary)
|
||||
--
|
||||
-- (c) 2017 James Sweet
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
use IEEE.STD_LOGIC_UNSIGNED.all;
|
||||
|
||||
entity collision_detect is
|
||||
port(
|
||||
Clk6 : in std_logic;
|
||||
Car1 : in std_logic;
|
||||
Car1_n : in std_logic;
|
||||
Car2 : in std_logic;
|
||||
Car2_n : in std_logic;
|
||||
Car3_4_n : in std_logic;
|
||||
WhitePF_n : in std_logic;
|
||||
BlackPF_n : in std_logic;
|
||||
CollRst1_n : in std_logic;
|
||||
Collisions1 : out std_logic_vector(1 downto 0)
|
||||
);
|
||||
end collision_detect;
|
||||
|
||||
architecture rtl of collision_detect is
|
||||
|
||||
signal Col_latch_Q : std_logic_vector(2 downto 1) := (others => '0');
|
||||
signal S1_n : std_logic_vector(2 downto 1);
|
||||
signal S2_n : std_logic_vector(2 downto 1);
|
||||
signal R_n : std_logic_vector(2 downto 1);
|
||||
|
||||
|
||||
begin
|
||||
|
||||
-- Tristate buffer at E5 route collision signals to data bus 7-6
|
||||
Collisions1 <= Col_latch_Q(2 downto 1);
|
||||
|
||||
-- 74LS279 quad SR latch at H6, all inputs are active low
|
||||
-- Made synchronous here
|
||||
H6: process(Clk6, S1_n, S2_n, R_n, Col_latch_Q)
|
||||
begin
|
||||
if rising_edge(Clk6) then
|
||||
-- Units 1 and 3 each have an extra Set element, only half of IC is used in Sprint 1
|
||||
-- Ordered from top to bottom as drawn in the schematic
|
||||
if R_n(1) = '0' then
|
||||
Col_latch_Q(1) <= '0';
|
||||
elsif (S1_n(1) and S2_n(1)) = '0' then
|
||||
Col_latch_Q(1) <= '1';
|
||||
else
|
||||
Col_latch_Q(1) <= Col_latch_Q(1);
|
||||
end if;
|
||||
if R_n(2) = '0' then
|
||||
Col_latch_Q(2) <= '0';
|
||||
elsif S1_n(2) = '0' then
|
||||
Col_latch_Q(2) <= '1';
|
||||
else
|
||||
Col_latch_Q(2) <= Col_latch_Q(2);
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Glue logic
|
||||
S2_n(1) <= BlackPF_n or Car1_n;
|
||||
S1_n(1) <= Car1 nand (Car2_n nand Car3_4_n);
|
||||
R_n(1) <= CollRst1_n;
|
||||
|
||||
R_n(2) <= CollRst1_n;
|
||||
S1_n(2) <= Car1_n or WhitePF_n;
|
||||
|
||||
end rtl;
|
||||
506
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/cpu_mem.vhd
Normal file
506
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/cpu_mem.vhd
Normal file
@@ -0,0 +1,506 @@
|
||||
-- CPU, RAM, ROM and address decoder for Kee Games Sprint 1
|
||||
-- (c) 2017 James Sweet
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
use IEEE.STD_LOGIC_UNSIGNED.all;
|
||||
|
||||
entity CPU_mem is
|
||||
port(
|
||||
CLK12 : in std_logic;
|
||||
CLK6 : in std_logic; -- 6MHz on schematic
|
||||
Reset_n : in std_logic;
|
||||
VCount : in std_logic_vector(7 downto 0);
|
||||
HCount : in std_logic_vector(8 downto 0);
|
||||
Vblank_s : in std_logic; -- Vblank* on schematic
|
||||
Vreset : in std_logic;
|
||||
Hsync_n : in std_logic;
|
||||
Test_n : in std_logic;
|
||||
Attract : out std_logic;
|
||||
Skid1 : out std_logic;
|
||||
Skid2 : out std_logic;
|
||||
NoiseReset_n : out std_logic;
|
||||
CollRst1_n : out std_logic;
|
||||
CollRst2_n : out std_logic;
|
||||
Lamp1 : out std_logic;
|
||||
SteerRst1_n : out std_logic;
|
||||
PHI1_O : out std_logic;
|
||||
PHI2_O : out std_logic;
|
||||
DISPLAY : out std_logic_vector(7 downto 0);
|
||||
IO_Adr : out std_logic_vector(9 downto 0);
|
||||
Collisions1 : in std_logic_vector(1 downto 0);
|
||||
Collisions2 : in std_logic_vector(1 downto 0);
|
||||
Inputs : in std_logic_vector(1 downto 0)
|
||||
);
|
||||
end CPU_mem;
|
||||
|
||||
architecture rtl of CPU_mem is
|
||||
|
||||
signal cpu_clk : std_logic;
|
||||
signal PHI1 : std_logic;
|
||||
signal PHI2 : std_logic;
|
||||
signal Q5 : std_logic;
|
||||
signal Q6 : std_logic;
|
||||
signal A7_2 : std_logic;
|
||||
signal A7_5 : std_logic;
|
||||
signal A7_7 : std_logic;
|
||||
|
||||
signal A8_6 : std_logic;
|
||||
|
||||
signal H256 : std_logic;
|
||||
signal H256_n : std_logic;
|
||||
signal H128 : std_logic;
|
||||
signal H64 : std_logic;
|
||||
signal H32 : std_logic;
|
||||
signal H16 : std_logic;
|
||||
signal H8 : std_logic;
|
||||
signal H4 : std_logic;
|
||||
|
||||
signal V128 : std_logic;
|
||||
signal V64 : std_logic;
|
||||
signal V32 : std_logic;
|
||||
signal V16 : std_logic;
|
||||
signal V8 : std_logic;
|
||||
|
||||
signal IRQ_n : std_logic;
|
||||
signal NMI_n : std_logic;
|
||||
signal RW_n : std_logic;
|
||||
signal RnW : std_logic;
|
||||
signal A : std_logic_vector(15 downto 0);
|
||||
signal ADR : std_logic_vector(9 downto 0);
|
||||
signal cpuDin : std_logic_vector(7 downto 0);
|
||||
signal cpuDout : std_logic_vector(7 downto 0);
|
||||
signal DBUS_n : std_logic_vector(7 downto 0);
|
||||
signal DBUS : std_logic_vector(7 downto 0);
|
||||
|
||||
signal ROM1_dout : std_logic_vector(7 downto 0);
|
||||
signal ROM2_dout : std_logic_vector(7 downto 0);
|
||||
signal ROM3_dout : std_logic_vector(7 downto 0);
|
||||
signal ROM4_dout : std_logic_vector(7 downto 0);
|
||||
signal ROM_dout : std_logic_vector(7 downto 0);
|
||||
|
||||
signal ROM1 : std_logic;
|
||||
signal ROM2 : std_logic;
|
||||
signal ROM3 : std_logic;
|
||||
signal ROM4 : std_logic;
|
||||
signal ROM_ce : std_logic;
|
||||
signal ROM_mux_in : std_logic_vector(3 downto 0);
|
||||
|
||||
signal cpuRAM_dout : std_logic_vector(7 downto 0);
|
||||
signal Vram_dout : std_logic_vector(7 downto 0);
|
||||
signal RAM_addr : std_logic_vector(9 downto 0) := (others => '0');
|
||||
signal Vram_addr : std_logic_vector(9 downto 0) := (others => '0');
|
||||
signal scanbus : std_logic_vector(9 downto 0) := (others => '0');
|
||||
signal RAM_dout : std_logic_vector(7 downto 0);
|
||||
signal RAM_we : std_logic;
|
||||
signal RAM_RW_n : std_logic;
|
||||
signal RAM_ce_n : std_logic;
|
||||
signal RAM_n : std_logic;
|
||||
signal WRAM : std_logic;
|
||||
signal WRITE_n : std_logic;
|
||||
|
||||
signal F2_in : std_logic_vector(3 downto 0);
|
||||
signal F2_out : std_logic_vector(9 downto 0);
|
||||
signal D2_in : std_logic_vector(3 downto 0);
|
||||
signal D2_out : std_logic_vector(9 downto 0);
|
||||
signal E8_in : std_logic_vector(3 downto 0);
|
||||
signal E8_out : std_logic_vector(9 downto 0);
|
||||
signal P3_8 : std_logic;
|
||||
|
||||
signal Sync : std_logic;
|
||||
signal Sync_n : std_logic;
|
||||
signal Switch_n : std_logic;
|
||||
signal Display_n : std_logic;
|
||||
signal Addec_bus : std_logic_vector(7 downto 0);
|
||||
|
||||
signal Timer_Reset_n : std_logic := '1';
|
||||
signal Collision1_n : std_logic := '1';
|
||||
signal Collision2_n : std_logic := '1';
|
||||
signal Attract_int : std_logic := '1';
|
||||
|
||||
signal J6_5 : std_logic;
|
||||
signal J6_9 : std_logic;
|
||||
|
||||
signal Coin1 : std_logic;
|
||||
signal Coin2 : std_logic;
|
||||
signal Input_mux : std_logic;
|
||||
signal A8_8 : std_logic;
|
||||
signal H9_Q_n : std_logic;
|
||||
signal J9_out : std_logic_vector(7 downto 0);
|
||||
|
||||
signal H8_en : std_logic;
|
||||
|
||||
begin
|
||||
|
||||
H8 <= HCount(3);
|
||||
H16 <= HCount(4);
|
||||
H32 <= HCount(5);
|
||||
H64 <= HCount(6);
|
||||
H128 <= HCount(7);
|
||||
H256 <= HCount(8);
|
||||
H256_n <= (not HCount(8));
|
||||
|
||||
V8 <= VCount(3);
|
||||
V16 <= VCount(4);
|
||||
V32 <= VCount(5);
|
||||
V64 <= VCount(6);
|
||||
V128 <= VCount(7);
|
||||
|
||||
|
||||
CPU: entity work.T65
|
||||
port map(
|
||||
Enable => '1',
|
||||
Mode => "00",
|
||||
Res_n => reset_n,
|
||||
Clk => phi1,
|
||||
Rdy => '1',
|
||||
Abort_n => '1',
|
||||
IRQ_n => '1',
|
||||
NMI_n => NMI_n,
|
||||
SO_n => '1',
|
||||
R_W_n => RW_n,
|
||||
A(15 downto 0) => A,
|
||||
DI => cpuDin,
|
||||
DO => cpuDout
|
||||
);
|
||||
|
||||
DBUS_n <= (not cpuDout); -- Data bus to video RAM is inverted
|
||||
ADR(9 downto 7) <= (A(9) or WRAM) & (A(8) or WRAM) & (A(7) or WRAM);
|
||||
ADR(6 downto 0) <= A(6 downto 0);
|
||||
RnW <= (not RW_n);
|
||||
IO_Adr <= Adr;
|
||||
NMI_n <= not (Vblank_s and Test_n);
|
||||
|
||||
|
||||
-- CPU clock
|
||||
H4 <= Hcount(2);
|
||||
CPU_clock: process(clk12, H4, Q5, Q6)
|
||||
begin
|
||||
if rising_edge(clk12) then
|
||||
Q5 <= H4;
|
||||
Q6 <= Q5;
|
||||
end if;
|
||||
phi1 <= not (Q5 or Q6); --?
|
||||
end process;
|
||||
|
||||
PHI2 <= (not PHI1);
|
||||
PHI1_O <= PHI1;
|
||||
PHI2_O <= PHI2;
|
||||
|
||||
|
||||
A8_6 <= not(RnW and PHI2 and H4 and WRITE_n);
|
||||
A7: process(clk12, A8_6) -- Shift register chain of 4 DFF's clocked by clk12, creates a delayed WRITE_n
|
||||
begin
|
||||
if rising_edge(clk12) then
|
||||
A7_2 <= A8_6;
|
||||
A7_5 <= A7_2;
|
||||
A7_7 <= A7_5;
|
||||
WRITE_n <= A7_7;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- Program ROMs
|
||||
A1: entity work.sprom
|
||||
generic map(
|
||||
init_file => "rtl/roms/6290-01b1.hex",
|
||||
widthad_a => 11,
|
||||
width_a => 8)
|
||||
port map(
|
||||
clock => clk6,
|
||||
address => A(10) & ADR(9 downto 0),
|
||||
q => rom1_dout
|
||||
);
|
||||
|
||||
--A1: entity work.prog_rom1
|
||||
--port map(
|
||||
-- clock => clk6,
|
||||
-- address => A(10) & ADR(9 downto 0),
|
||||
-- q => rom1_dout
|
||||
-- );
|
||||
|
||||
C1: entity work.sprom
|
||||
generic map(
|
||||
init_file => "rtl/roms/6291-01c1.hex",
|
||||
widthad_a => 11,
|
||||
width_a => 8)
|
||||
port map(
|
||||
clock => clk6,
|
||||
address => A(10) & ADR(9 downto 0),
|
||||
q => rom2_dout
|
||||
);
|
||||
|
||||
--C1: entity work.prog_rom2
|
||||
--port map(
|
||||
-- clock => clk6,
|
||||
-- address => A(10) & ADR(9 downto 0),
|
||||
-- q => rom2_dout
|
||||
-- );
|
||||
|
||||
D1: entity work.sprom
|
||||
generic map(
|
||||
init_file => "rtl/roms/6442-01d1.hex",
|
||||
widthad_a => 11,
|
||||
width_a => 8)
|
||||
port map(
|
||||
clock => clk6,
|
||||
address => A(10) & ADR(9 downto 0),
|
||||
q => rom3_dout
|
||||
);
|
||||
|
||||
--D1: entity work.prog_rom3
|
||||
--port map(
|
||||
-- clock => clk6,
|
||||
-- address => A(10) & ADR(9 downto 0),
|
||||
-- q => rom3_dout
|
||||
-- );
|
||||
|
||||
E1: entity work.sprom
|
||||
generic map(
|
||||
init_file => "rtl/roms/6443-01e1.hex",
|
||||
widthad_a => 11,
|
||||
width_a => 8)
|
||||
port map(
|
||||
clock => clk6,
|
||||
address => A(10) & ADR(9 downto 0),
|
||||
q => rom4_dout
|
||||
);
|
||||
|
||||
--E1: entity work.prog_rom4
|
||||
--port map(
|
||||
-- clock => clk6,
|
||||
-- address => A(10) & ADR(9 downto 0),
|
||||
-- q => rom4_dout
|
||||
-- );
|
||||
|
||||
-- ROM data mux
|
||||
ROM_mux_in <= (ROM1 & ROM2 & ROM3 & ROM4);
|
||||
ROM_mux: process(ROM_mux_in, rom1_dout, rom2_dout, rom3_dout, rom4_dout)
|
||||
begin
|
||||
ROM_dout <= (others => '0');
|
||||
case ROM_mux_in is
|
||||
when "1000" => rom_dout <= rom1_dout;
|
||||
when "0100" => rom_dout <= rom2_dout;
|
||||
when "0010" => rom_dout <= rom3_dout;
|
||||
when "0001" => rom_dout <= rom4_dout;
|
||||
when others => null;
|
||||
end case;
|
||||
end process;
|
||||
|
||||
-- RAM
|
||||
-- The original hardware multiplexes access to the RAM between the CPU and video hardware. In the FPGA it's
|
||||
-- easier to use dual-ported RAM
|
||||
RAM: entity work.dpram
|
||||
generic map(
|
||||
widthad_a => 10,
|
||||
width_a => 8)
|
||||
port map(
|
||||
clock_a => clk6,
|
||||
-- CPU side
|
||||
address_a => adr(9 downto 0),
|
||||
wren_a => ram_we,
|
||||
data_a => DBUS_n,
|
||||
q_a=> CPUram_dout,
|
||||
|
||||
-- Video side
|
||||
clock_b => clk6,
|
||||
address_b => Vram_addr,
|
||||
wren_b => '0',
|
||||
data_b => x"FF",
|
||||
q_b => Vram_dout
|
||||
);
|
||||
|
||||
--RAM: entity work.ram1k_dp
|
||||
--port map(
|
||||
-- clock => clk6,
|
||||
-- CPU side
|
||||
-- address_a => adr(9 downto 0),
|
||||
-- wren_a => ram_we,
|
||||
-- data_a => DBUS_n,
|
||||
-- q_a=> CPUram_dout,
|
||||
|
||||
-- Video side
|
||||
-- address_b => Vram_addr,
|
||||
-- wren_b => '0',
|
||||
-- data_b => x"FF",
|
||||
-- q_b => Vram_dout
|
||||
-- );
|
||||
|
||||
Vram_addr <= (V128 or H256_n) & (V64 or H256_n) & (V32 or H256_n) & (V16 and H256) & (V8 and H256) & H128 & H64 & H32 & H16 & H8;
|
||||
|
||||
-- Real hardware has both WE and CE which are selected by K2 according to the state of the phase 2 clock
|
||||
-- Altera block RAM has active high WE, original RAM had active low WE
|
||||
ram_we <= (not Write_n) and (not Display_n) and Phi2;
|
||||
|
||||
-- Rising edge of phi2 clock latches inverted output of VRAM data bus
|
||||
F5: process(phi2)
|
||||
begin
|
||||
if rising_edge(phi2) then
|
||||
display <= not Vram_dout;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- Address decoder
|
||||
-- A15 and A14 are not used
|
||||
-- Original circuit uses a bipolar PROM in the address decoder, this could be replaced with combinational logic
|
||||
|
||||
-- E2 PROM
|
||||
K6: entity work.sprom
|
||||
generic map(
|
||||
init_file => "rtl/roms/6401-01e2.hex",
|
||||
widthad_a => 5,
|
||||
width_a => 8)
|
||||
port map(
|
||||
clock => clk12,
|
||||
address => A(13 downto 9),
|
||||
q => addec_bus
|
||||
);
|
||||
|
||||
--E2: entity work.addec_prom
|
||||
--port map(
|
||||
-- clock => clk12,
|
||||
-- address => A(13 downto 9),
|
||||
-- q => addec_bus
|
||||
-- );
|
||||
|
||||
F2_in <= addec_bus(0) & addec_bus(1) & addec_bus(2) & addec_bus(3);
|
||||
WRAM <= addec_bus(4);
|
||||
D2_in <= RnW & addec_bus(5) & addec_bus(6) & addec_bus(7);
|
||||
|
||||
-- Decoder code could be cleaned up a bit, unused decoder states are not explicitly implemented
|
||||
F2: process(F2_in)
|
||||
begin
|
||||
case F2_in is
|
||||
when "0000" =>
|
||||
F2_out <= "1111111110";
|
||||
when "0001" =>
|
||||
F2_out <= "1111111101";
|
||||
when "0010" =>
|
||||
F2_out <= "1111111011";
|
||||
when "0011" =>
|
||||
F2_out <= "1111110111";
|
||||
when "0100" =>
|
||||
F2_out <= "1111101111";
|
||||
when "0101" =>
|
||||
F2_out <= "1111011111";
|
||||
when "0110" =>
|
||||
F2_out <= "1110111111";
|
||||
when "0111" =>
|
||||
F2_out <= "1101111111";
|
||||
when others =>
|
||||
F2_out <= "1111111111";
|
||||
end case;
|
||||
end process;
|
||||
|
||||
ROM1 <= (F2_out(0) nand F2_out(1));
|
||||
ROM2 <= (F2_out(2) nand F2_out(3));
|
||||
ROM3 <= (F2_out(4) nand F2_out(5));
|
||||
ROM4 <= (F2_out(6) nand F2_out(7));
|
||||
ROM_ce <= (ROM1 or ROM2 or ROM3 or ROM4);
|
||||
|
||||
D2: process(D2_in)
|
||||
begin
|
||||
case D2_in is
|
||||
when "0000" =>
|
||||
D2_out <= "1111111110";
|
||||
when "0001" =>
|
||||
D2_out <= "1111111101";
|
||||
when "0010" =>
|
||||
D2_out <= "1111111011";
|
||||
when "0011" =>
|
||||
D2_out <= "1111110111";
|
||||
when "0100" =>
|
||||
D2_out <= "1111101111";
|
||||
when "1000" =>
|
||||
D2_out <= "1011111111";
|
||||
when "1001" =>
|
||||
D2_out <= "0111111111";
|
||||
when others =>
|
||||
D2_out <= "1111111111";
|
||||
end case;
|
||||
end process;
|
||||
|
||||
RAM_n <= D2_out(0);
|
||||
SYNC_n <= D2_out(1);
|
||||
SYNC <= (not SYNC_n);
|
||||
SWITCH_n <= D2_out(2);
|
||||
COLLISION1_n <= D2_out(3);
|
||||
COLLISION2_n <= D2_out(4);
|
||||
DISPLAY_n <= (D2_out(0) and D2_out(8));
|
||||
P3_8 <= (D2_out(9) or WRITE_n);
|
||||
|
||||
E8_in <= P3_8 & ADR(9 downto 7);
|
||||
|
||||
E8: process(E8_in)
|
||||
begin
|
||||
case E8_in is
|
||||
when "0000" =>
|
||||
E8_out <= "1111111110";
|
||||
when "0001" =>
|
||||
E8_out <= "1111111101";
|
||||
when "0010" =>
|
||||
E8_out <= "1111111011";
|
||||
when "0011" =>
|
||||
E8_out <= "1111110111";
|
||||
when "0100" =>
|
||||
E8_out <= "1111101111";
|
||||
when "0101" =>
|
||||
E8_out <= "1111011111";
|
||||
when "0110" =>
|
||||
E8_out <= "1110111111";
|
||||
when others =>
|
||||
E8_out <= "1111111111";
|
||||
end case;
|
||||
end process;
|
||||
|
||||
H8_en <= E8_out(0);
|
||||
Timer_Reset_n <= E8_out(1);
|
||||
CollRst1_n <= E8_out(2);
|
||||
CollRst2_n <= E8_out(3);
|
||||
SteerRst1_n <= E8_out(4);
|
||||
NoiseReset_n <= E8_out(6);
|
||||
|
||||
-- H8 9334
|
||||
H8_dec: process(clk6, Adr)
|
||||
begin
|
||||
if rising_edge(clk6) then
|
||||
if (H8_en = '0') then
|
||||
case Adr(6 downto 4) is
|
||||
when "000" => Attract_int <= Adr(0);
|
||||
when "001" => Skid1 <= Adr(0);
|
||||
when "010" => null;
|
||||
when "011" => LAMP1 <= Adr(0);
|
||||
when "100" => null;
|
||||
when "101" => null; -- "Spare" on schematic
|
||||
when "110" => null;
|
||||
when "111" => null;
|
||||
when others => null;
|
||||
end case;
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
Attract <= Attract_Int;
|
||||
|
||||
-- CPU Din mux
|
||||
cpuDin <= ROM_dout when rom_ce = '1' else
|
||||
(not CPUram_dout) when Display_n = '0' else -- Remember RAM data is inverted
|
||||
VCount(7) & VBlank_s & Vreset & Attract_int & "1111" when Sync_n = '0' else -- Using V128 (VCount(7)) in place of 60Hz mains reference
|
||||
Collisions1 & "111111" when Collision1_n = '0' else
|
||||
Inputs & "111111" when SWITCH_n = '0' else
|
||||
x"FF";
|
||||
|
||||
end rtl;
|
||||
33
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/dac.sv
Normal file
33
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/dac.sv
Normal file
@@ -0,0 +1,33 @@
|
||||
//
|
||||
// PWM DAC
|
||||
//
|
||||
// MSBI is the highest bit number. NOT amount of bits!
|
||||
//
|
||||
module dac #(parameter MSBI=6, parameter INV=1'b1)
|
||||
(
|
||||
output reg DACout, //Average Output feeding analog lowpass
|
||||
input [MSBI:0] DACin, //DAC input (excess 2**MSBI)
|
||||
input CLK,
|
||||
input RESET
|
||||
);
|
||||
|
||||
reg [MSBI+2:0] DeltaAdder; //Output of Delta Adder
|
||||
reg [MSBI+2:0] SigmaAdder; //Output of Sigma Adder
|
||||
reg [MSBI+2:0] SigmaLatch; //Latches output of Sigma Adder
|
||||
reg [MSBI+2:0] DeltaB; //B input of Delta Adder
|
||||
|
||||
always @(*) DeltaB = {SigmaLatch[MSBI+2], SigmaLatch[MSBI+2]} << (MSBI+1);
|
||||
always @(*) DeltaAdder = DACin + DeltaB;
|
||||
always @(*) SigmaAdder = DeltaAdder + SigmaLatch;
|
||||
|
||||
always @(posedge CLK or posedge RESET) begin
|
||||
if(RESET) begin
|
||||
SigmaLatch <= 1'b1 << (MSBI+1);
|
||||
DACout <= INV;
|
||||
end else begin
|
||||
SigmaLatch <= SigmaAdder;
|
||||
DACout <= SigmaLatch[MSBI+2] ^ INV;
|
||||
end
|
||||
end
|
||||
|
||||
endmodule
|
||||
130
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/dpram.vhd
Normal file
130
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/dpram.vhd
Normal file
@@ -0,0 +1,130 @@
|
||||
LIBRARY ieee;
|
||||
USE ieee.std_logic_1164.all;
|
||||
|
||||
LIBRARY altera_mf;
|
||||
USE altera_mf.all;
|
||||
|
||||
ENTITY dpram IS
|
||||
GENERIC
|
||||
(
|
||||
init_file : string := "";
|
||||
widthad_a : natural;
|
||||
width_a : natural := 8;
|
||||
outdata_reg_a : string := "UNREGISTERED";
|
||||
outdata_reg_b : string := "UNREGISTERED"
|
||||
);
|
||||
PORT
|
||||
(
|
||||
address_a : IN STD_LOGIC_VECTOR (widthad_a-1 DOWNTO 0);
|
||||
address_b : IN STD_LOGIC_VECTOR (widthad_a-1 DOWNTO 0);
|
||||
clock_a : IN STD_LOGIC ;
|
||||
clock_b : IN STD_LOGIC ;
|
||||
data_a : IN STD_LOGIC_VECTOR (width_a-1 DOWNTO 0);
|
||||
data_b : IN STD_LOGIC_VECTOR (width_a-1 DOWNTO 0);
|
||||
wren_a : IN STD_LOGIC := '1';
|
||||
wren_b : IN STD_LOGIC := '1';
|
||||
q_a : OUT STD_LOGIC_VECTOR (width_a-1 DOWNTO 0);
|
||||
q_b : OUT STD_LOGIC_VECTOR (width_a-1 DOWNTO 0)
|
||||
);
|
||||
END dpram;
|
||||
|
||||
|
||||
ARCHITECTURE SYN OF dpram IS
|
||||
|
||||
SIGNAL sub_wire0 : STD_LOGIC_VECTOR (width_a-1 DOWNTO 0);
|
||||
SIGNAL sub_wire1 : STD_LOGIC_VECTOR (width_a-1 DOWNTO 0);
|
||||
|
||||
|
||||
|
||||
COMPONENT altsyncram
|
||||
GENERIC (
|
||||
address_reg_b : STRING;
|
||||
clock_enable_input_a : STRING;
|
||||
clock_enable_input_b : STRING;
|
||||
clock_enable_output_a : STRING;
|
||||
clock_enable_output_b : STRING;
|
||||
indata_reg_b : STRING;
|
||||
init_file : STRING;
|
||||
intended_device_family : STRING;
|
||||
lpm_type : STRING;
|
||||
numwords_a : NATURAL;
|
||||
numwords_b : NATURAL;
|
||||
operation_mode : STRING;
|
||||
outdata_aclr_a : STRING;
|
||||
outdata_aclr_b : STRING;
|
||||
outdata_reg_a : STRING;
|
||||
outdata_reg_b : STRING;
|
||||
power_up_uninitialized : STRING;
|
||||
read_during_write_mode_port_a : STRING;
|
||||
read_during_write_mode_port_b : STRING;
|
||||
widthad_a : NATURAL;
|
||||
widthad_b : NATURAL;
|
||||
width_a : NATURAL;
|
||||
width_b : NATURAL;
|
||||
width_byteena_a : NATURAL;
|
||||
width_byteena_b : NATURAL;
|
||||
wrcontrol_wraddress_reg_b : STRING
|
||||
);
|
||||
PORT (
|
||||
wren_a : IN STD_LOGIC ;
|
||||
clock0 : IN STD_LOGIC ;
|
||||
wren_b : IN STD_LOGIC ;
|
||||
clock1 : IN STD_LOGIC ;
|
||||
address_a : IN STD_LOGIC_VECTOR (widthad_a-1 DOWNTO 0);
|
||||
address_b : IN STD_LOGIC_VECTOR (widthad_a-1 DOWNTO 0);
|
||||
q_a : OUT STD_LOGIC_VECTOR (width_a-1 DOWNTO 0);
|
||||
q_b : OUT STD_LOGIC_VECTOR (width_a-1 DOWNTO 0);
|
||||
data_a : IN STD_LOGIC_VECTOR (width_a-1 DOWNTO 0);
|
||||
data_b : IN STD_LOGIC_VECTOR (width_a-1 DOWNTO 0)
|
||||
);
|
||||
END COMPONENT;
|
||||
|
||||
BEGIN
|
||||
q_a <= sub_wire0(width_a-1 DOWNTO 0);
|
||||
q_b <= sub_wire1(width_a-1 DOWNTO 0);
|
||||
|
||||
altsyncram_component : altsyncram
|
||||
GENERIC MAP (
|
||||
address_reg_b => "CLOCK1",
|
||||
clock_enable_input_a => "BYPASS",
|
||||
clock_enable_input_b => "BYPASS",
|
||||
clock_enable_output_a => "BYPASS",
|
||||
clock_enable_output_b => "BYPASS",
|
||||
indata_reg_b => "CLOCK1",
|
||||
init_file => init_file,
|
||||
intended_device_family => "Cyclone III",
|
||||
lpm_type => "altsyncram",
|
||||
numwords_a => 2**widthad_a,
|
||||
numwords_b => 2**widthad_a,
|
||||
operation_mode => "BIDIR_DUAL_PORT",
|
||||
outdata_aclr_a => "NONE",
|
||||
outdata_aclr_b => "NONE",
|
||||
outdata_reg_a => outdata_reg_a,
|
||||
outdata_reg_b => outdata_reg_a,
|
||||
power_up_uninitialized => "FALSE",
|
||||
read_during_write_mode_port_a => "NEW_DATA_NO_NBE_READ",
|
||||
read_during_write_mode_port_b => "NEW_DATA_NO_NBE_READ",
|
||||
widthad_a => widthad_a,
|
||||
widthad_b => widthad_a,
|
||||
width_a => width_a,
|
||||
width_b => width_a,
|
||||
width_byteena_a => 1,
|
||||
width_byteena_b => 1,
|
||||
wrcontrol_wraddress_reg_b => "CLOCK1"
|
||||
)
|
||||
PORT MAP (
|
||||
wren_a => wren_a,
|
||||
clock0 => clock_a,
|
||||
wren_b => wren_b,
|
||||
clock1 => clock_b,
|
||||
address_a => address_a,
|
||||
address_b => address_b,
|
||||
data_a => data_a,
|
||||
data_b => data_b,
|
||||
q_a => sub_wire0,
|
||||
q_b => sub_wire1
|
||||
);
|
||||
|
||||
|
||||
|
||||
END SYN;
|
||||
454
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/hq2x.sv
Normal file
454
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/hq2x.sv
Normal file
@@ -0,0 +1,454 @@
|
||||
//
|
||||
//
|
||||
// Copyright (c) 2012-2013 Ludvig Strigeus
|
||||
// Copyright (c) 2017 Sorgelig
|
||||
//
|
||||
// This program is GPL Licensed. See COPYING for the full license.
|
||||
//
|
||||
//
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// synopsys translate_off
|
||||
`timescale 1 ps / 1 ps
|
||||
// synopsys translate_on
|
||||
|
||||
`define BITS_TO_FIT(N) ( \
|
||||
N <= 2 ? 0 : \
|
||||
N <= 4 ? 1 : \
|
||||
N <= 8 ? 2 : \
|
||||
N <= 16 ? 3 : \
|
||||
N <= 32 ? 4 : \
|
||||
N <= 64 ? 5 : \
|
||||
N <= 128 ? 6 : \
|
||||
N <= 256 ? 7 : \
|
||||
N <= 512 ? 8 : \
|
||||
N <=1024 ? 9 : 10 )
|
||||
|
||||
module hq2x_in #(parameter LENGTH, parameter DWIDTH)
|
||||
(
|
||||
input clk,
|
||||
|
||||
input [AWIDTH:0] rdaddr,
|
||||
input rdbuf,
|
||||
output[DWIDTH:0] q,
|
||||
|
||||
input [AWIDTH:0] wraddr,
|
||||
input wrbuf,
|
||||
input [DWIDTH:0] data,
|
||||
input wren
|
||||
);
|
||||
|
||||
localparam AWIDTH = `BITS_TO_FIT(LENGTH);
|
||||
wire [DWIDTH:0] out[2];
|
||||
assign q = out[rdbuf];
|
||||
|
||||
hq2x_buf #(.NUMWORDS(LENGTH), .AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) buf0(clk,data,rdaddr,wraddr,wren && (wrbuf == 0),out[0]);
|
||||
hq2x_buf #(.NUMWORDS(LENGTH), .AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) buf1(clk,data,rdaddr,wraddr,wren && (wrbuf == 1),out[1]);
|
||||
endmodule
|
||||
|
||||
|
||||
module hq2x_out #(parameter LENGTH, parameter DWIDTH)
|
||||
(
|
||||
input clk,
|
||||
|
||||
input [AWIDTH:0] rdaddr,
|
||||
input [1:0] rdbuf,
|
||||
output[DWIDTH:0] q,
|
||||
|
||||
input [AWIDTH:0] wraddr,
|
||||
input [1:0] wrbuf,
|
||||
input [DWIDTH:0] data,
|
||||
input wren
|
||||
);
|
||||
|
||||
localparam AWIDTH = `BITS_TO_FIT(LENGTH*2);
|
||||
wire [DWIDTH:0] out[4];
|
||||
assign q = out[rdbuf];
|
||||
|
||||
hq2x_buf #(.NUMWORDS(LENGTH*2), .AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) buf0(clk,data,rdaddr,wraddr,wren && (wrbuf == 0),out[0]);
|
||||
hq2x_buf #(.NUMWORDS(LENGTH*2), .AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) buf1(clk,data,rdaddr,wraddr,wren && (wrbuf == 1),out[1]);
|
||||
hq2x_buf #(.NUMWORDS(LENGTH*2), .AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) buf2(clk,data,rdaddr,wraddr,wren && (wrbuf == 2),out[2]);
|
||||
hq2x_buf #(.NUMWORDS(LENGTH*2), .AWIDTH(AWIDTH), .DWIDTH(DWIDTH)) buf3(clk,data,rdaddr,wraddr,wren && (wrbuf == 3),out[3]);
|
||||
endmodule
|
||||
|
||||
|
||||
module hq2x_buf #(parameter NUMWORDS, parameter AWIDTH, parameter DWIDTH)
|
||||
(
|
||||
input clock,
|
||||
input [DWIDTH:0] data,
|
||||
input [AWIDTH:0] rdaddress,
|
||||
input [AWIDTH:0] wraddress,
|
||||
input wren,
|
||||
output [DWIDTH:0] q
|
||||
);
|
||||
|
||||
altsyncram altsyncram_component (
|
||||
.address_a (wraddress),
|
||||
.clock0 (clock),
|
||||
.data_a (data),
|
||||
.wren_a (wren),
|
||||
.address_b (rdaddress),
|
||||
.q_b(q),
|
||||
.aclr0 (1'b0),
|
||||
.aclr1 (1'b0),
|
||||
.addressstall_a (1'b0),
|
||||
.addressstall_b (1'b0),
|
||||
.byteena_a (1'b1),
|
||||
.byteena_b (1'b1),
|
||||
.clock1 (1'b1),
|
||||
.clocken0 (1'b1),
|
||||
.clocken1 (1'b1),
|
||||
.clocken2 (1'b1),
|
||||
.clocken3 (1'b1),
|
||||
.data_b ({(DWIDTH+1){1'b1}}),
|
||||
.eccstatus (),
|
||||
.q_a (),
|
||||
.rden_a (1'b1),
|
||||
.rden_b (1'b1),
|
||||
.wren_b (1'b0));
|
||||
defparam
|
||||
altsyncram_component.address_aclr_b = "NONE",
|
||||
altsyncram_component.address_reg_b = "CLOCK0",
|
||||
altsyncram_component.clock_enable_input_a = "BYPASS",
|
||||
altsyncram_component.clock_enable_input_b = "BYPASS",
|
||||
altsyncram_component.clock_enable_output_b = "BYPASS",
|
||||
altsyncram_component.intended_device_family = "Cyclone III",
|
||||
altsyncram_component.lpm_type = "altsyncram",
|
||||
altsyncram_component.numwords_a = NUMWORDS,
|
||||
altsyncram_component.numwords_b = NUMWORDS,
|
||||
altsyncram_component.operation_mode = "DUAL_PORT",
|
||||
altsyncram_component.outdata_aclr_b = "NONE",
|
||||
altsyncram_component.outdata_reg_b = "UNREGISTERED",
|
||||
altsyncram_component.power_up_uninitialized = "FALSE",
|
||||
altsyncram_component.read_during_write_mode_mixed_ports = "DONT_CARE",
|
||||
altsyncram_component.widthad_a = AWIDTH+1,
|
||||
altsyncram_component.widthad_b = AWIDTH+1,
|
||||
altsyncram_component.width_a = DWIDTH+1,
|
||||
altsyncram_component.width_b = DWIDTH+1,
|
||||
altsyncram_component.width_byteena_a = 1;
|
||||
|
||||
endmodule
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
module DiffCheck
|
||||
(
|
||||
input [17:0] rgb1,
|
||||
input [17:0] rgb2,
|
||||
output result
|
||||
);
|
||||
|
||||
wire [5:0] r = rgb1[5:1] - rgb2[5:1];
|
||||
wire [5:0] g = rgb1[11:7] - rgb2[11:7];
|
||||
wire [5:0] b = rgb1[17:13] - rgb2[17:13];
|
||||
wire [6:0] t = $signed(r) + $signed(b);
|
||||
wire [6:0] gx = {g[5], g};
|
||||
wire [7:0] y = $signed(t) + $signed(gx);
|
||||
wire [6:0] u = $signed(r) - $signed(b);
|
||||
wire [7:0] v = $signed({g, 1'b0}) - $signed(t);
|
||||
|
||||
// if y is inside (-24..24)
|
||||
wire y_inside = (y < 8'h18 || y >= 8'he8);
|
||||
|
||||
// if u is inside (-4, 4)
|
||||
wire u_inside = (u < 7'h4 || u >= 7'h7c);
|
||||
|
||||
// if v is inside (-6, 6)
|
||||
wire v_inside = (v < 8'h6 || v >= 8'hfA);
|
||||
assign result = !(y_inside && u_inside && v_inside);
|
||||
endmodule
|
||||
|
||||
module InnerBlend
|
||||
(
|
||||
input [8:0] Op,
|
||||
input [5:0] A,
|
||||
input [5:0] B,
|
||||
input [5:0] C,
|
||||
output [5:0] O
|
||||
);
|
||||
|
||||
function [8:0] mul6x3;
|
||||
input [5:0] op1;
|
||||
input [2:0] op2;
|
||||
begin
|
||||
mul6x3 = 9'd0;
|
||||
if(op2[0]) mul6x3 = mul6x3 + op1;
|
||||
if(op2[1]) mul6x3 = mul6x3 + {op1, 1'b0};
|
||||
if(op2[2]) mul6x3 = mul6x3 + {op1, 2'b00};
|
||||
end
|
||||
endfunction
|
||||
|
||||
wire OpOnes = Op[4];
|
||||
wire [8:0] Amul = mul6x3(A, Op[7:5]);
|
||||
wire [8:0] Bmul = mul6x3(B, {Op[3:2], 1'b0});
|
||||
wire [8:0] Cmul = mul6x3(C, {Op[1:0], 1'b0});
|
||||
wire [8:0] At = Amul;
|
||||
wire [8:0] Bt = (OpOnes == 0) ? Bmul : {3'b0, B};
|
||||
wire [8:0] Ct = (OpOnes == 0) ? Cmul : {3'b0, C};
|
||||
wire [9:0] Res = {At, 1'b0} + Bt + Ct;
|
||||
assign O = Op[8] ? A : Res[9:4];
|
||||
endmodule
|
||||
|
||||
module Blend
|
||||
(
|
||||
input [5:0] rule,
|
||||
input disable_hq2x,
|
||||
input [17:0] E,
|
||||
input [17:0] A,
|
||||
input [17:0] B,
|
||||
input [17:0] D,
|
||||
input [17:0] F,
|
||||
input [17:0] H,
|
||||
output [17:0] Result
|
||||
);
|
||||
|
||||
reg [1:0] input_ctrl;
|
||||
reg [8:0] op;
|
||||
localparam BLEND0 = 9'b1_xxx_x_xx_xx; // 0: A
|
||||
localparam BLEND1 = 9'b0_110_0_10_00; // 1: (A * 12 + B * 4) >> 4
|
||||
localparam BLEND2 = 9'b0_100_0_10_10; // 2: (A * 8 + B * 4 + C * 4) >> 4
|
||||
localparam BLEND3 = 9'b0_101_0_10_01; // 3: (A * 10 + B * 4 + C * 2) >> 4
|
||||
localparam BLEND4 = 9'b0_110_0_01_01; // 4: (A * 12 + B * 2 + C * 2) >> 4
|
||||
localparam BLEND5 = 9'b0_010_0_11_11; // 5: (A * 4 + (B + C) * 6) >> 4
|
||||
localparam BLEND6 = 9'b0_111_1_xx_xx; // 6: (A * 14 + B + C) >> 4
|
||||
localparam AB = 2'b00;
|
||||
localparam AD = 2'b01;
|
||||
localparam DB = 2'b10;
|
||||
localparam BD = 2'b11;
|
||||
wire is_diff;
|
||||
DiffCheck diff_checker(rule[1] ? B : H, rule[0] ? D : F, is_diff);
|
||||
|
||||
always @* begin
|
||||
case({!is_diff, rule[5:2]})
|
||||
1,17: {op, input_ctrl} = {BLEND1, AB};
|
||||
2,18: {op, input_ctrl} = {BLEND1, DB};
|
||||
3,19: {op, input_ctrl} = {BLEND1, BD};
|
||||
4,20: {op, input_ctrl} = {BLEND2, DB};
|
||||
5,21: {op, input_ctrl} = {BLEND2, AB};
|
||||
6,22: {op, input_ctrl} = {BLEND2, AD};
|
||||
|
||||
8: {op, input_ctrl} = {BLEND0, 2'bxx};
|
||||
9: {op, input_ctrl} = {BLEND0, 2'bxx};
|
||||
10: {op, input_ctrl} = {BLEND0, 2'bxx};
|
||||
11: {op, input_ctrl} = {BLEND1, AB};
|
||||
12: {op, input_ctrl} = {BLEND1, AB};
|
||||
13: {op, input_ctrl} = {BLEND1, AB};
|
||||
14: {op, input_ctrl} = {BLEND1, DB};
|
||||
15: {op, input_ctrl} = {BLEND1, BD};
|
||||
|
||||
24: {op, input_ctrl} = {BLEND2, DB};
|
||||
25: {op, input_ctrl} = {BLEND5, DB};
|
||||
26: {op, input_ctrl} = {BLEND6, DB};
|
||||
27: {op, input_ctrl} = {BLEND2, DB};
|
||||
28: {op, input_ctrl} = {BLEND4, DB};
|
||||
29: {op, input_ctrl} = {BLEND5, DB};
|
||||
30: {op, input_ctrl} = {BLEND3, BD};
|
||||
31: {op, input_ctrl} = {BLEND3, DB};
|
||||
default: {op, input_ctrl} = 11'bx;
|
||||
endcase
|
||||
|
||||
// Setting op[8] effectively disables HQ2X because blend will always return E.
|
||||
if (disable_hq2x) op[8] = 1;
|
||||
end
|
||||
|
||||
// Generate inputs to the inner blender. Valid combinations.
|
||||
// 00: E A B
|
||||
// 01: E A D
|
||||
// 10: E D B
|
||||
// 11: E B D
|
||||
wire [17:0] Input1 = E;
|
||||
wire [17:0] Input2 = !input_ctrl[1] ? A :
|
||||
!input_ctrl[0] ? D : B;
|
||||
|
||||
wire [17:0] Input3 = !input_ctrl[0] ? B : D;
|
||||
InnerBlend inner_blend1(op, Input1[5:0], Input2[5:0], Input3[5:0], Result[5:0]);
|
||||
InnerBlend inner_blend2(op, Input1[11:6], Input2[11:6], Input3[11:6], Result[11:6]);
|
||||
InnerBlend inner_blend3(op, Input1[17:12], Input2[17:12], Input3[17:12], Result[17:12]);
|
||||
endmodule
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
module Hq2x #(parameter LENGTH, parameter HALF_DEPTH)
|
||||
(
|
||||
input clk,
|
||||
input ce_x4,
|
||||
input [DWIDTH:0] inputpixel,
|
||||
input mono,
|
||||
input disable_hq2x,
|
||||
input reset_frame,
|
||||
input reset_line,
|
||||
input [1:0] read_y,
|
||||
input [AWIDTH+1:0] read_x,
|
||||
output [DWIDTH:0] outpixel
|
||||
);
|
||||
|
||||
|
||||
localparam AWIDTH = `BITS_TO_FIT(LENGTH);
|
||||
localparam DWIDTH = HALF_DEPTH ? 8 : 17;
|
||||
|
||||
wire [5:0] hqTable[256] = '{
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 47, 35, 23, 15, 55, 39,
|
||||
19, 19, 26, 58, 19, 19, 26, 58, 23, 15, 35, 35, 23, 15, 7, 35,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 55, 39, 23, 15, 51, 43,
|
||||
19, 19, 26, 58, 19, 19, 26, 58, 23, 15, 51, 35, 23, 15, 7, 43,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 61, 35, 35, 23, 61, 51, 35,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 51, 35, 23, 15, 51, 35,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 61, 7, 35, 23, 61, 7, 43,
|
||||
19, 19, 26, 11, 19, 19, 26, 58, 23, 15, 51, 35, 23, 61, 7, 43,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 47, 35, 23, 15, 55, 39,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 51, 35, 23, 15, 51, 35,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 55, 39, 23, 15, 51, 43,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 51, 39, 23, 15, 7, 43,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 51, 35, 23, 15, 51, 39,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 51, 35, 23, 15, 7, 35,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 51, 35, 23, 15, 7, 43,
|
||||
19, 19, 26, 11, 19, 19, 26, 11, 23, 15, 7, 35, 23, 15, 7, 43
|
||||
};
|
||||
|
||||
reg [17:0] Prev0, Prev1, Prev2, Curr0, Curr1, Next0, Next1, Next2;
|
||||
reg [17:0] A, B, D, F, G, H;
|
||||
reg [7:0] pattern, nextpatt;
|
||||
reg [1:0] i;
|
||||
reg [7:0] y;
|
||||
|
||||
wire curbuf = y[0];
|
||||
reg prevbuf = 0;
|
||||
wire iobuf = !curbuf;
|
||||
|
||||
wire diff0, diff1;
|
||||
DiffCheck diffcheck0(Curr1, (i == 0) ? Prev0 : (i == 1) ? Curr0 : (i == 2) ? Prev2 : Next1, diff0);
|
||||
DiffCheck diffcheck1(Curr1, (i == 0) ? Prev1 : (i == 1) ? Next0 : (i == 2) ? Curr2 : Next2, diff1);
|
||||
|
||||
wire [7:0] new_pattern = {diff1, diff0, pattern[7:2]};
|
||||
|
||||
wire [17:0] X = (i == 0) ? A : (i == 1) ? Prev1 : (i == 2) ? Next1 : G;
|
||||
wire [17:0] blend_result;
|
||||
Blend blender(hqTable[nextpatt], disable_hq2x, Curr0, X, B, D, F, H, blend_result);
|
||||
|
||||
reg Curr2_addr1;
|
||||
reg [AWIDTH:0] Curr2_addr2;
|
||||
wire [17:0] Curr2 = HALF_DEPTH ? h2rgb(Curr2tmp) : Curr2tmp;
|
||||
wire [DWIDTH:0] Curr2tmp;
|
||||
|
||||
reg [AWIDTH:0] wrin_addr2;
|
||||
reg [DWIDTH:0] wrpix;
|
||||
reg wrin_en;
|
||||
|
||||
function [17:0] h2rgb;
|
||||
input [8:0] v;
|
||||
begin
|
||||
h2rgb = mono ? {v[5:3],v[2:0], v[5:3],v[2:0], v[5:3],v[2:0]} : {v[8:6],v[8:6],v[5:3],v[5:3],v[2:0],v[2:0]};
|
||||
end
|
||||
endfunction
|
||||
|
||||
function [8:0] rgb2h;
|
||||
input [17:0] v;
|
||||
begin
|
||||
rgb2h = mono ? {3'b000, v[17:15], v[14:12]} : {v[17:15], v[11:9], v[5:3]};
|
||||
end
|
||||
endfunction
|
||||
|
||||
hq2x_in #(.LENGTH(LENGTH), .DWIDTH(DWIDTH)) hq2x_in
|
||||
(
|
||||
.clk(clk),
|
||||
|
||||
.rdaddr(Curr2_addr2),
|
||||
.rdbuf(Curr2_addr1),
|
||||
.q(Curr2tmp),
|
||||
|
||||
.wraddr(wrin_addr2),
|
||||
.wrbuf(iobuf),
|
||||
.data(wrpix),
|
||||
.wren(wrin_en)
|
||||
);
|
||||
|
||||
reg [1:0] wrout_addr1;
|
||||
reg [AWIDTH+1:0] wrout_addr2;
|
||||
reg wrout_en;
|
||||
reg [DWIDTH:0] wrdata;
|
||||
|
||||
hq2x_out #(.LENGTH(LENGTH), .DWIDTH(DWIDTH)) hq2x_out
|
||||
(
|
||||
.clk(clk),
|
||||
|
||||
.rdaddr(read_x),
|
||||
.rdbuf(read_y),
|
||||
.q(outpixel),
|
||||
|
||||
.wraddr(wrout_addr2),
|
||||
.wrbuf(wrout_addr1),
|
||||
.data(wrdata),
|
||||
.wren(wrout_en)
|
||||
);
|
||||
|
||||
always @(posedge clk) begin
|
||||
reg [AWIDTH:0] offs;
|
||||
reg old_reset_line;
|
||||
reg old_reset_frame;
|
||||
|
||||
wrout_en <= 0;
|
||||
wrin_en <= 0;
|
||||
|
||||
if(ce_x4) begin
|
||||
|
||||
pattern <= new_pattern;
|
||||
|
||||
if(~&offs) begin
|
||||
if (i == 0) begin
|
||||
Curr2_addr1 <= prevbuf;
|
||||
Curr2_addr2 <= offs;
|
||||
end
|
||||
if (i == 1) begin
|
||||
Prev2 <= Curr2;
|
||||
Curr2_addr1 <= curbuf;
|
||||
Curr2_addr2 <= offs;
|
||||
end
|
||||
if (i == 2) begin
|
||||
Next2 <= HALF_DEPTH ? h2rgb(inputpixel) : inputpixel;
|
||||
wrpix <= inputpixel;
|
||||
wrin_addr2 <= offs;
|
||||
wrin_en <= 1;
|
||||
end
|
||||
if (i == 3) begin
|
||||
offs <= offs + 1'd1;
|
||||
end
|
||||
|
||||
if(HALF_DEPTH) wrdata <= rgb2h(blend_result);
|
||||
else wrdata <= blend_result;
|
||||
|
||||
wrout_addr1 <= {curbuf, i[1]};
|
||||
wrout_addr2 <= {offs, i[1]^i[0]};
|
||||
wrout_en <= 1;
|
||||
end
|
||||
|
||||
if(i==3) begin
|
||||
nextpatt <= {new_pattern[7:6], new_pattern[3], new_pattern[5], new_pattern[2], new_pattern[4], new_pattern[1:0]};
|
||||
{A, G} <= {Prev0, Next0};
|
||||
{B, F, H, D} <= {Prev1, Curr2, Next1, Curr0};
|
||||
{Prev0, Prev1} <= {Prev1, Prev2};
|
||||
{Curr0, Curr1} <= {Curr1, Curr2};
|
||||
{Next0, Next1} <= {Next1, Next2};
|
||||
end else begin
|
||||
nextpatt <= {nextpatt[5], nextpatt[3], nextpatt[0], nextpatt[6], nextpatt[1], nextpatt[7], nextpatt[4], nextpatt[2]};
|
||||
{B, F, H, D} <= {F, H, D, B};
|
||||
end
|
||||
|
||||
i <= i + 1'b1;
|
||||
if(old_reset_line && ~reset_line) begin
|
||||
old_reset_frame <= reset_frame;
|
||||
offs <= 0;
|
||||
i <= 0;
|
||||
y <= y + 1'd1;
|
||||
prevbuf <= curbuf;
|
||||
if(old_reset_frame & ~reset_frame) begin
|
||||
y <= 0;
|
||||
prevbuf <= 0;
|
||||
end
|
||||
end
|
||||
|
||||
old_reset_line <= reset_line;
|
||||
end
|
||||
end
|
||||
|
||||
endmodule // Hq2x
|
||||
84
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/keyboard.sv
Normal file
84
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/keyboard.sv
Normal file
@@ -0,0 +1,84 @@
|
||||
|
||||
|
||||
module keyboard
|
||||
(
|
||||
input clk,
|
||||
input reset,
|
||||
input ps2_kbd_clk,
|
||||
input ps2_kbd_data,
|
||||
|
||||
output reg[11:0] joystick
|
||||
);
|
||||
|
||||
reg [11:0] shift_reg = 12'hFFF;
|
||||
wire[11:0] kdata = {ps2_kbd_data,shift_reg[11:1]};
|
||||
wire [7:0] kcode = kdata[9:2];
|
||||
reg release_btn = 0;
|
||||
|
||||
reg [7:0] code;
|
||||
reg input_strobe = 0;
|
||||
|
||||
always @(negedge clk) begin
|
||||
reg old_reset = 0;
|
||||
|
||||
old_reset <= reset;
|
||||
|
||||
if(~old_reset & reset)begin
|
||||
joystick <= 0;
|
||||
end
|
||||
|
||||
if(input_strobe) begin
|
||||
case(code)
|
||||
'h75: joystick[3] <= ~release_btn; // arrow up
|
||||
'h72: joystick[2] <= ~release_btn; // arrow down
|
||||
'h6B: joystick[1] <= ~release_btn; // arrow left
|
||||
'h74: joystick[0] <= ~release_btn; // arrow right
|
||||
|
||||
'h29: joystick[4] <= ~release_btn; // Space
|
||||
'h05: joystick[5] <= ~release_btn; // F1
|
||||
'h06: joystick[6] <= ~release_btn; // F2
|
||||
'h76: joystick[7] <= ~release_btn; // Escape
|
||||
|
||||
'h69: joystick[8] <= ~release_btn; // 1
|
||||
'h72: joystick[9] <= ~release_btn; // 2
|
||||
'h7A: joystick[10] <= ~release_btn; // 3
|
||||
'h6B: joystick[11] <= ~release_btn; // 4
|
||||
endcase
|
||||
end
|
||||
end
|
||||
|
||||
always @(posedge clk) begin
|
||||
reg [3:0] prev_clk = 0;
|
||||
reg old_reset = 0;
|
||||
reg action = 0;
|
||||
|
||||
old_reset <= reset;
|
||||
input_strobe <= 0;
|
||||
|
||||
if(~old_reset & reset)begin
|
||||
prev_clk <= 0;
|
||||
shift_reg <= 12'hFFF;
|
||||
end else begin
|
||||
prev_clk <= {ps2_kbd_clk,prev_clk[3:1]};
|
||||
if(prev_clk == 1) begin
|
||||
if (kdata[11] & ^kdata[10:2] & ~kdata[1] & kdata[0]) begin
|
||||
shift_reg <= 12'hFFF;
|
||||
if (kcode == 8'he0) ;
|
||||
// Extended key code follows
|
||||
else if (kcode == 8'hf0)
|
||||
// Release code follows
|
||||
action <= 1;
|
||||
else begin
|
||||
// Cancel extended/release flags for next time
|
||||
action <= 0;
|
||||
release_btn <= action;
|
||||
code <= kcode;
|
||||
input_strobe <= 1;
|
||||
end
|
||||
end else begin
|
||||
shift_reg <= kdata;
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
endmodule
|
||||
491
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/mist_io.sv
Normal file
491
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/mist_io.sv
Normal file
@@ -0,0 +1,491 @@
|
||||
//
|
||||
// mist_io.v
|
||||
//
|
||||
// mist_io for the MiST board
|
||||
// http://code.google.com/p/mist-board/
|
||||
//
|
||||
// Copyright (c) 2014 Till Harbaum <till@harbaum.org>
|
||||
//
|
||||
// This source file is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published
|
||||
// by the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This source file is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////
|
||||
|
||||
//
|
||||
// Use buffer to access SD card. It's time-critical part.
|
||||
// Made module synchroneous with 2 clock domains: clk_sys and SPI_SCK
|
||||
// (Sorgelig)
|
||||
//
|
||||
// for synchronous projects default value for PS2DIV is fine for any frequency of system clock.
|
||||
// clk_ps2 = clk_sys/(PS2DIV*2)
|
||||
//
|
||||
|
||||
module mist_io #(parameter STRLEN=0, parameter PS2DIV=100)
|
||||
(
|
||||
|
||||
// parameter STRLEN and the actual length of conf_str have to match
|
||||
input [(8*STRLEN)-1:0] conf_str,
|
||||
|
||||
// Global clock. It should be around 100MHz (higher is better).
|
||||
input clk_sys,
|
||||
|
||||
// Global SPI clock from ARM. 24MHz
|
||||
input SPI_SCK,
|
||||
|
||||
input CONF_DATA0,
|
||||
input SPI_SS2,
|
||||
output SPI_DO,
|
||||
input SPI_DI,
|
||||
|
||||
output reg [7:0] joystick_0,
|
||||
output reg [7:0] joystick_1,
|
||||
output reg [15:0] joystick_analog_0,
|
||||
output reg [15:0] joystick_analog_1,
|
||||
output [1:0] buttons,
|
||||
output [1:0] switches,
|
||||
output scandoubler_disable,
|
||||
output ypbpr,
|
||||
|
||||
output reg [31:0] status,
|
||||
|
||||
// SD config
|
||||
input sd_conf,
|
||||
input sd_sdhc,
|
||||
output img_mounted, // signaling that new image has been mounted
|
||||
output reg [31:0] img_size, // size of image in bytes
|
||||
|
||||
// SD block level access
|
||||
input [31:0] sd_lba,
|
||||
input sd_rd,
|
||||
input sd_wr,
|
||||
output reg sd_ack,
|
||||
output reg sd_ack_conf,
|
||||
|
||||
// SD byte level access. Signals for 2-PORT altsyncram.
|
||||
output reg [8:0] sd_buff_addr,
|
||||
output reg [7:0] sd_buff_dout,
|
||||
input [7:0] sd_buff_din,
|
||||
output reg sd_buff_wr,
|
||||
|
||||
// ps2 keyboard emulation
|
||||
output ps2_kbd_clk,
|
||||
output reg ps2_kbd_data,
|
||||
output ps2_mouse_clk,
|
||||
output reg ps2_mouse_data,
|
||||
input ps2_caps_led,
|
||||
|
||||
// ARM -> FPGA download
|
||||
output reg ioctl_download = 0, // signal indicating an active download
|
||||
output reg [7:0] ioctl_index, // menu index used to upload the file
|
||||
output ioctl_wr,
|
||||
output reg [23:0] ioctl_addr,
|
||||
output reg [7:0] ioctl_dout
|
||||
);
|
||||
|
||||
reg [7:0] b_data;
|
||||
reg [6:0] sbuf;
|
||||
reg [7:0] cmd;
|
||||
reg [2:0] bit_cnt; // counts bits 0-7 0-7 ...
|
||||
reg [9:0] byte_cnt; // counts bytes
|
||||
reg [7:0] but_sw;
|
||||
reg [2:0] stick_idx;
|
||||
|
||||
reg mount_strobe = 0;
|
||||
assign img_mounted = mount_strobe;
|
||||
|
||||
assign buttons = but_sw[1:0];
|
||||
assign switches = but_sw[3:2];
|
||||
assign scandoubler_disable = but_sw[4];
|
||||
assign ypbpr = but_sw[5];
|
||||
|
||||
wire [7:0] spi_dout = { sbuf, SPI_DI};
|
||||
|
||||
// this variant of user_io is for 8 bit cores (type == a4) only
|
||||
wire [7:0] core_type = 8'ha4;
|
||||
|
||||
// command byte read by the io controller
|
||||
wire [7:0] sd_cmd = { 4'h5, sd_conf, sd_sdhc, sd_wr, sd_rd };
|
||||
|
||||
reg spi_do;
|
||||
assign SPI_DO = CONF_DATA0 ? 1'bZ : spi_do;
|
||||
|
||||
wire [7:0] kbd_led = { 2'b01, 4'b0000, ps2_caps_led, 1'b1};
|
||||
|
||||
// drive MISO only when transmitting core id
|
||||
always@(negedge SPI_SCK) begin
|
||||
if(!CONF_DATA0) begin
|
||||
// first byte returned is always core type, further bytes are
|
||||
// command dependent
|
||||
if(byte_cnt == 0) begin
|
||||
spi_do <= core_type[~bit_cnt];
|
||||
|
||||
end else begin
|
||||
case(cmd)
|
||||
// reading config string
|
||||
8'h14: begin
|
||||
// returning a byte from string
|
||||
if(byte_cnt < STRLEN + 1) spi_do <= conf_str[{STRLEN - byte_cnt,~bit_cnt}];
|
||||
else spi_do <= 0;
|
||||
end
|
||||
|
||||
// reading sd card status
|
||||
8'h16: begin
|
||||
if(byte_cnt == 1) spi_do <= sd_cmd[~bit_cnt];
|
||||
else if((byte_cnt >= 2) && (byte_cnt < 6)) spi_do <= sd_lba[{5-byte_cnt, ~bit_cnt}];
|
||||
else spi_do <= 0;
|
||||
end
|
||||
|
||||
// reading sd card write data
|
||||
8'h18:
|
||||
spi_do <= b_data[~bit_cnt];
|
||||
|
||||
// reading keyboard LED status
|
||||
8'h1f:
|
||||
spi_do <= kbd_led[~bit_cnt];
|
||||
|
||||
default:
|
||||
spi_do <= 0;
|
||||
endcase
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
reg b_wr2,b_wr3;
|
||||
always @(negedge clk_sys) begin
|
||||
b_wr3 <= b_wr2;
|
||||
sd_buff_wr <= b_wr3;
|
||||
end
|
||||
|
||||
// SPI receiver
|
||||
always@(posedge SPI_SCK or posedge CONF_DATA0) begin
|
||||
|
||||
if(CONF_DATA0) begin
|
||||
b_wr2 <= 0;
|
||||
bit_cnt <= 0;
|
||||
byte_cnt <= 0;
|
||||
sd_ack <= 0;
|
||||
sd_ack_conf <= 0;
|
||||
end else begin
|
||||
b_wr2 <= 0;
|
||||
|
||||
sbuf <= spi_dout[6:0];
|
||||
bit_cnt <= bit_cnt + 1'd1;
|
||||
if(bit_cnt == 5) begin
|
||||
if (byte_cnt == 0) sd_buff_addr <= 0;
|
||||
if((byte_cnt != 0) & (sd_buff_addr != 511)) sd_buff_addr <= sd_buff_addr + 1'b1;
|
||||
if((byte_cnt == 1) & ((cmd == 8'h17) | (cmd == 8'h19))) sd_buff_addr <= 0;
|
||||
end
|
||||
|
||||
// finished reading command byte
|
||||
if(bit_cnt == 7) begin
|
||||
if(~&byte_cnt) byte_cnt <= byte_cnt + 8'd1;
|
||||
if(byte_cnt == 0) begin
|
||||
cmd <= spi_dout;
|
||||
|
||||
if(spi_dout == 8'h19) begin
|
||||
sd_ack_conf <= 1;
|
||||
sd_buff_addr <= 0;
|
||||
end
|
||||
if((spi_dout == 8'h17) || (spi_dout == 8'h18)) begin
|
||||
sd_ack <= 1;
|
||||
sd_buff_addr <= 0;
|
||||
end
|
||||
if(spi_dout == 8'h18) b_data <= sd_buff_din;
|
||||
|
||||
mount_strobe <= 0;
|
||||
|
||||
end else begin
|
||||
|
||||
case(cmd)
|
||||
// buttons and switches
|
||||
8'h01: but_sw <= spi_dout;
|
||||
8'h02: joystick_0 <= spi_dout;
|
||||
8'h03: joystick_1 <= spi_dout;
|
||||
|
||||
// store incoming ps2 mouse bytes
|
||||
8'h04: begin
|
||||
ps2_mouse_fifo[ps2_mouse_wptr] <= spi_dout;
|
||||
ps2_mouse_wptr <= ps2_mouse_wptr + 1'd1;
|
||||
end
|
||||
|
||||
// store incoming ps2 keyboard bytes
|
||||
8'h05: begin
|
||||
ps2_kbd_fifo[ps2_kbd_wptr] <= spi_dout;
|
||||
ps2_kbd_wptr <= ps2_kbd_wptr + 1'd1;
|
||||
end
|
||||
|
||||
8'h15: status[7:0] <= spi_dout;
|
||||
|
||||
// send SD config IO -> FPGA
|
||||
// flag that download begins
|
||||
// sd card knows data is config if sd_dout_strobe is asserted
|
||||
// with sd_ack still being inactive (low)
|
||||
8'h19,
|
||||
// send sector IO -> FPGA
|
||||
// flag that download begins
|
||||
8'h17: begin
|
||||
sd_buff_dout <= spi_dout;
|
||||
b_wr2 <= 1;
|
||||
end
|
||||
|
||||
8'h18: b_data <= sd_buff_din;
|
||||
|
||||
// joystick analog
|
||||
8'h1a: begin
|
||||
// first byte is joystick index
|
||||
if(byte_cnt == 1) stick_idx <= spi_dout[2:0];
|
||||
else if(byte_cnt == 2) begin
|
||||
// second byte is x axis
|
||||
if(stick_idx == 0) joystick_analog_0[15:8] <= spi_dout;
|
||||
else if(stick_idx == 1) joystick_analog_1[15:8] <= spi_dout;
|
||||
end else if(byte_cnt == 3) begin
|
||||
// third byte is y axis
|
||||
if(stick_idx == 0) joystick_analog_0[7:0] <= spi_dout;
|
||||
else if(stick_idx == 1) joystick_analog_1[7:0] <= spi_dout;
|
||||
end
|
||||
end
|
||||
|
||||
// notify image selection
|
||||
8'h1c: mount_strobe <= 1;
|
||||
|
||||
// send image info
|
||||
8'h1d: if(byte_cnt<5) img_size[(byte_cnt-1)<<3 +:8] <= spi_dout;
|
||||
|
||||
// status, 32bit version
|
||||
8'h1e: if(byte_cnt<5) status[(byte_cnt-1)<<3 +:8] <= spi_dout;
|
||||
default: ;
|
||||
endcase
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
/////////////////////////////// PS2 ///////////////////////////////
|
||||
// 8 byte fifos to store ps2 bytes
|
||||
localparam PS2_FIFO_BITS = 3;
|
||||
|
||||
reg clk_ps2;
|
||||
always @(negedge clk_sys) begin
|
||||
integer cnt;
|
||||
cnt <= cnt + 1'd1;
|
||||
if(cnt == PS2DIV) begin
|
||||
clk_ps2 <= ~clk_ps2;
|
||||
cnt <= 0;
|
||||
end
|
||||
end
|
||||
|
||||
// keyboard
|
||||
reg [7:0] ps2_kbd_fifo[1<<PS2_FIFO_BITS];
|
||||
reg [PS2_FIFO_BITS-1:0] ps2_kbd_wptr;
|
||||
reg [PS2_FIFO_BITS-1:0] ps2_kbd_rptr;
|
||||
|
||||
// ps2 transmitter state machine
|
||||
reg [3:0] ps2_kbd_tx_state;
|
||||
reg [7:0] ps2_kbd_tx_byte;
|
||||
reg ps2_kbd_parity;
|
||||
|
||||
assign ps2_kbd_clk = clk_ps2 || (ps2_kbd_tx_state == 0);
|
||||
|
||||
// ps2 transmitter
|
||||
// Takes a byte from the FIFO and sends it in a ps2 compliant serial format.
|
||||
reg ps2_kbd_r_inc;
|
||||
always@(posedge clk_sys) begin
|
||||
reg old_clk;
|
||||
old_clk <= clk_ps2;
|
||||
if(~old_clk & clk_ps2) begin
|
||||
ps2_kbd_r_inc <= 0;
|
||||
|
||||
if(ps2_kbd_r_inc) ps2_kbd_rptr <= ps2_kbd_rptr + 1'd1;
|
||||
|
||||
// transmitter is idle?
|
||||
if(ps2_kbd_tx_state == 0) begin
|
||||
// data in fifo present?
|
||||
if(ps2_kbd_wptr != ps2_kbd_rptr) begin
|
||||
// load tx register from fifo
|
||||
ps2_kbd_tx_byte <= ps2_kbd_fifo[ps2_kbd_rptr];
|
||||
ps2_kbd_r_inc <= 1;
|
||||
|
||||
// reset parity
|
||||
ps2_kbd_parity <= 1;
|
||||
|
||||
// start transmitter
|
||||
ps2_kbd_tx_state <= 1;
|
||||
|
||||
// put start bit on data line
|
||||
ps2_kbd_data <= 0; // start bit is 0
|
||||
end
|
||||
end else begin
|
||||
|
||||
// transmission of 8 data bits
|
||||
if((ps2_kbd_tx_state >= 1)&&(ps2_kbd_tx_state < 9)) begin
|
||||
ps2_kbd_data <= ps2_kbd_tx_byte[0]; // data bits
|
||||
ps2_kbd_tx_byte[6:0] <= ps2_kbd_tx_byte[7:1]; // shift down
|
||||
if(ps2_kbd_tx_byte[0])
|
||||
ps2_kbd_parity <= !ps2_kbd_parity;
|
||||
end
|
||||
|
||||
// transmission of parity
|
||||
if(ps2_kbd_tx_state == 9) ps2_kbd_data <= ps2_kbd_parity;
|
||||
|
||||
// transmission of stop bit
|
||||
if(ps2_kbd_tx_state == 10) ps2_kbd_data <= 1; // stop bit is 1
|
||||
|
||||
// advance state machine
|
||||
if(ps2_kbd_tx_state < 11) ps2_kbd_tx_state <= ps2_kbd_tx_state + 1'd1;
|
||||
else ps2_kbd_tx_state <= 0;
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
// mouse
|
||||
reg [7:0] ps2_mouse_fifo[1<<PS2_FIFO_BITS];
|
||||
reg [PS2_FIFO_BITS-1:0] ps2_mouse_wptr;
|
||||
reg [PS2_FIFO_BITS-1:0] ps2_mouse_rptr;
|
||||
|
||||
// ps2 transmitter state machine
|
||||
reg [3:0] ps2_mouse_tx_state;
|
||||
reg [7:0] ps2_mouse_tx_byte;
|
||||
reg ps2_mouse_parity;
|
||||
|
||||
assign ps2_mouse_clk = clk_ps2 || (ps2_mouse_tx_state == 0);
|
||||
|
||||
// ps2 transmitter
|
||||
// Takes a byte from the FIFO and sends it in a ps2 compliant serial format.
|
||||
reg ps2_mouse_r_inc;
|
||||
always@(posedge clk_sys) begin
|
||||
reg old_clk;
|
||||
old_clk <= clk_ps2;
|
||||
if(~old_clk & clk_ps2) begin
|
||||
ps2_mouse_r_inc <= 0;
|
||||
|
||||
if(ps2_mouse_r_inc) ps2_mouse_rptr <= ps2_mouse_rptr + 1'd1;
|
||||
|
||||
// transmitter is idle?
|
||||
if(ps2_mouse_tx_state == 0) begin
|
||||
// data in fifo present?
|
||||
if(ps2_mouse_wptr != ps2_mouse_rptr) begin
|
||||
// load tx register from fifo
|
||||
ps2_mouse_tx_byte <= ps2_mouse_fifo[ps2_mouse_rptr];
|
||||
ps2_mouse_r_inc <= 1;
|
||||
|
||||
// reset parity
|
||||
ps2_mouse_parity <= 1;
|
||||
|
||||
// start transmitter
|
||||
ps2_mouse_tx_state <= 1;
|
||||
|
||||
// put start bit on data line
|
||||
ps2_mouse_data <= 0; // start bit is 0
|
||||
end
|
||||
end else begin
|
||||
|
||||
// transmission of 8 data bits
|
||||
if((ps2_mouse_tx_state >= 1)&&(ps2_mouse_tx_state < 9)) begin
|
||||
ps2_mouse_data <= ps2_mouse_tx_byte[0]; // data bits
|
||||
ps2_mouse_tx_byte[6:0] <= ps2_mouse_tx_byte[7:1]; // shift down
|
||||
if(ps2_mouse_tx_byte[0])
|
||||
ps2_mouse_parity <= !ps2_mouse_parity;
|
||||
end
|
||||
|
||||
// transmission of parity
|
||||
if(ps2_mouse_tx_state == 9) ps2_mouse_data <= ps2_mouse_parity;
|
||||
|
||||
// transmission of stop bit
|
||||
if(ps2_mouse_tx_state == 10) ps2_mouse_data <= 1; // stop bit is 1
|
||||
|
||||
// advance state machine
|
||||
if(ps2_mouse_tx_state < 11) ps2_mouse_tx_state <= ps2_mouse_tx_state + 1'd1;
|
||||
else ps2_mouse_tx_state <= 0;
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
/////////////////////////////// DOWNLOADING ///////////////////////////////
|
||||
|
||||
reg [7:0] data_w;
|
||||
reg [23:0] addr_w;
|
||||
reg rclk = 0;
|
||||
|
||||
localparam UIO_FILE_TX = 8'h53;
|
||||
localparam UIO_FILE_TX_DAT = 8'h54;
|
||||
localparam UIO_FILE_INDEX = 8'h55;
|
||||
|
||||
// data_io has its own SPI interface to the io controller
|
||||
always@(posedge SPI_SCK, posedge SPI_SS2) begin
|
||||
reg [6:0] sbuf;
|
||||
reg [7:0] cmd;
|
||||
reg [4:0] cnt;
|
||||
reg [23:0] addr;
|
||||
|
||||
if(SPI_SS2) cnt <= 0;
|
||||
else begin
|
||||
rclk <= 0;
|
||||
|
||||
// don't shift in last bit. It is evaluated directly
|
||||
// when writing to ram
|
||||
if(cnt != 15) sbuf <= { sbuf[5:0], SPI_DI};
|
||||
|
||||
// increase target address after write
|
||||
if(rclk) addr <= addr + 1'd1;
|
||||
|
||||
// count 0-7 8-15 8-15 ...
|
||||
if(cnt < 15) cnt <= cnt + 1'd1;
|
||||
else cnt <= 8;
|
||||
|
||||
// finished command byte
|
||||
if(cnt == 7) cmd <= {sbuf, SPI_DI};
|
||||
|
||||
// prepare/end transmission
|
||||
if((cmd == UIO_FILE_TX) && (cnt == 15)) begin
|
||||
// prepare
|
||||
if(SPI_DI) begin
|
||||
addr <= 0;
|
||||
ioctl_download <= 1;
|
||||
end else begin
|
||||
addr_w <= addr;
|
||||
ioctl_download <= 0;
|
||||
end
|
||||
end
|
||||
|
||||
// command 0x54: UIO_FILE_TX
|
||||
if((cmd == UIO_FILE_TX_DAT) && (cnt == 15)) begin
|
||||
addr_w <= addr;
|
||||
data_w <= {sbuf, SPI_DI};
|
||||
rclk <= 1;
|
||||
end
|
||||
|
||||
// expose file (menu) index
|
||||
if((cmd == UIO_FILE_INDEX) && (cnt == 15)) ioctl_index <= {sbuf, SPI_DI};
|
||||
end
|
||||
end
|
||||
|
||||
assign ioctl_wr = |ioctl_wrd;
|
||||
reg [1:0] ioctl_wrd;
|
||||
|
||||
always@(negedge clk_sys) begin
|
||||
reg rclkD, rclkD2;
|
||||
|
||||
rclkD <= rclk;
|
||||
rclkD2 <= rclkD;
|
||||
ioctl_wrd<= {ioctl_wrd[0],1'b0};
|
||||
|
||||
if(rclkD & ~rclkD2) begin
|
||||
ioctl_dout <= data_w;
|
||||
ioctl_addr <= addr_w;
|
||||
ioctl_wrd <= 2'b11;
|
||||
end
|
||||
end
|
||||
|
||||
endmodule
|
||||
381
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/motion.vhd
Normal file
381
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/motion.vhd
Normal file
@@ -0,0 +1,381 @@
|
||||
-- Motion object generation circuitry for Kee Games Sprint 1
|
||||
-- This generates the four cars which are the only moving objects in the game
|
||||
-- (c) 2017 James Sweet
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
use IEEE.STD_LOGIC_UNSIGNED.all;
|
||||
|
||||
entity motion is
|
||||
port(
|
||||
CLK6 : in std_logic; -- 6MHz* on schematic
|
||||
CLK12 : in std_logic;
|
||||
PHI2 : in std_logic;
|
||||
DISPLAY : in std_logic_vector(7 downto 0);
|
||||
H256_s : in std_logic; -- 256H* on schematic
|
||||
VCount : in std_logic_vector(7 downto 0);
|
||||
HCount : in std_logic_vector(8 downto 0);
|
||||
Crash_n : out std_logic;
|
||||
Motor1_n : out std_logic;
|
||||
Car1 : out std_logic;
|
||||
Car1_n : out std_logic;
|
||||
Car2 : out std_logic;
|
||||
Car2_n : out std_logic;
|
||||
Car3_4_n : out std_logic
|
||||
);
|
||||
end motion;
|
||||
|
||||
architecture rtl of motion is
|
||||
|
||||
signal phi0 : std_logic;
|
||||
|
||||
signal LDH1_n : std_logic;
|
||||
signal LDH2_n : std_logic;
|
||||
signal LDH3_n : std_logic;
|
||||
signal LDH4_n : std_logic;
|
||||
|
||||
signal LDV1A_n : std_logic;
|
||||
signal LDV2A_n : std_logic;
|
||||
signal LDV3A_n : std_logic;
|
||||
signal LDV4A_n : std_logic;
|
||||
|
||||
signal LDV1B_n : std_logic;
|
||||
signal LDV2B_n : std_logic;
|
||||
signal LDV3B_n : std_logic;
|
||||
signal LDV4B_n : std_logic;
|
||||
|
||||
signal Car1_Inh : std_logic;
|
||||
signal Car2_Inh : std_logic;
|
||||
signal Car3_Inh : std_logic;
|
||||
signal Car4_Inh : std_logic;
|
||||
|
||||
signal VPos_sum : std_logic_vector(7 downto 0) := x"00";
|
||||
signal N4_8 : std_logic;
|
||||
|
||||
signal H256_n : std_logic;
|
||||
signal H256 : std_logic;
|
||||
signal H64 : std_logic;
|
||||
signal H32 : std_logic;
|
||||
signal H16 : std_logic;
|
||||
signal H8 : std_logic;
|
||||
signal H4 : std_logic;
|
||||
|
||||
signal L5_reg : std_logic_vector(3 downto 0);
|
||||
|
||||
signal J8_3 : std_logic;
|
||||
signal J8_6 : std_logic;
|
||||
|
||||
signal K8_in : std_logic_vector(3 downto 0);
|
||||
signal K8_out : std_logic_vector(9 downto 0);
|
||||
signal P7_in : std_logic_vector(3 downto 0);
|
||||
signal P7_out : std_logic_vector(9 downto 0);
|
||||
|
||||
signal Car1_Hpos : std_logic_vector(7 downto 0) := x"00";
|
||||
signal Car2_Hpos : std_logic_vector(7 downto 0) := x"00";
|
||||
signal Car3_Hpos : std_logic_vector(7 downto 0) := x"00";
|
||||
signal Car4_Hpos : std_logic_vector(7 downto 0) := x"00";
|
||||
|
||||
signal Car1_reg : std_logic_vector(15 downto 0) := x"0000";
|
||||
signal Car2_reg : std_logic_vector(15 downto 0) := x"0000";
|
||||
signal Car3_reg : std_logic_vector(15 downto 0) := x"0000";
|
||||
signal Car4_reg : std_logic_vector(15 downto 0) := x"0000";
|
||||
|
||||
signal Vid : std_logic_vector(7 downto 0);
|
||||
|
||||
|
||||
begin
|
||||
phi0 <= phi2;
|
||||
|
||||
H4 <= Hcount(2);
|
||||
H8 <= Hcount(3);
|
||||
H16 <= Hcount(4);
|
||||
H32 <= Hcount(5);
|
||||
H64 <= Hcount(6);
|
||||
H256 <= Hcount(8);
|
||||
H256_n <= not(Hcount(8));
|
||||
|
||||
-- Vertical line comparator
|
||||
VPos_sum <= Display + VCount;
|
||||
N4_8 <= not(VPos_sum(7) and VPos_sum(6) and VPos_sum(5) and VPos_sum(4) and VPos_sum(3) and H256_n and H64 and H8);
|
||||
|
||||
|
||||
-- D type flip-flops in L5
|
||||
L5: process(phi2, N4_8, VPos_sum(2 downto 0))
|
||||
begin
|
||||
if rising_edge(phi2) then
|
||||
L5_reg <= N4_8 & VPos_sum(2 downto 0);
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- Motion object PROMs - These contain the car images for all 32 possible orientations
|
||||
J6: entity work.sprom
|
||||
generic map(
|
||||
init_file => "rtl/roms/6399-01j6.hex",
|
||||
widthad_a => 9,
|
||||
width_a => 4)
|
||||
port map(
|
||||
clock => clk6,
|
||||
address => Display(7 downto 3) & L5_reg(2 downto 0) & phi2,
|
||||
q => Vid(7 downto 4)
|
||||
);
|
||||
|
||||
--J6: entity work.j6_prom
|
||||
--port map(
|
||||
-- clock => clk6,
|
||||
-- address => Display(7 downto 3) & L5_reg(2 downto 0) & phi2,
|
||||
-- q => Vid(7 downto 4)
|
||||
-- );
|
||||
|
||||
K6: entity work.sprom
|
||||
generic map(
|
||||
init_file => "rtl/roms/6398-01k6.hex",
|
||||
widthad_a => 9,
|
||||
width_a => 4)
|
||||
port map(
|
||||
clock => clk6,
|
||||
address => Display(7 downto 3) & L5_reg(2 downto 0) & phi2,
|
||||
q => Vid(3 downto 0)
|
||||
);
|
||||
|
||||
--K6: entity work.k6_prom
|
||||
--port map(
|
||||
-- clock => clk6,
|
||||
-- address => Display(7 downto 3) & L5_reg(2 downto 0) & phi2,
|
||||
-- q => Vid(3 downto 0)
|
||||
-- );
|
||||
|
||||
|
||||
-- Some glue logic
|
||||
J8_3 <= (H4 or L5_reg(3));
|
||||
J8_6 <= (H256 or H64 or H4);
|
||||
|
||||
|
||||
-- Decoders
|
||||
-- Making K8 synchronous fixes weird problem with ghost artifacts of motion objects
|
||||
K8_in <= J8_3 & H32 & H16 & phi0;
|
||||
K8: process(clk6, K8_in)
|
||||
begin
|
||||
if rising_edge(clk6) then
|
||||
case K8_in is
|
||||
when "0000" =>
|
||||
K8_out <= "1111111110";
|
||||
when "0001" =>
|
||||
K8_out <= "1111111101";
|
||||
when "0010" =>
|
||||
K8_out <= "1111111011";
|
||||
when "0011" =>
|
||||
K8_out <= "1111110111";
|
||||
when "0100" =>
|
||||
K8_out <= "1111101111";
|
||||
when "0101" =>
|
||||
K8_out <= "1111011111";
|
||||
when "0110" =>
|
||||
K8_out <= "1110111111";
|
||||
when "0111" =>
|
||||
K8_out <= "1101111111";
|
||||
when "1000" =>
|
||||
K8_out <= "1011111111";
|
||||
when "1001" =>
|
||||
K8_out <= "0111111111";
|
||||
when others =>
|
||||
K8_out <= "1111111111";
|
||||
end case;
|
||||
end if;
|
||||
end process;
|
||||
LDV3B_n <= K8_out(7);
|
||||
LDV3A_n <= K8_out(6);
|
||||
LDV2B_n <= K8_out(5);
|
||||
LDV2A_n <= K8_out(4);
|
||||
LDV1B_n <= K8_out(3);
|
||||
LDV1A_n <= K8_out(2);
|
||||
LDV4B_n <= K8_out(1);
|
||||
LDV4A_n <= K8_out(0);
|
||||
|
||||
P7_in <= J8_6 & H32 & H16 & H8;
|
||||
P7: process(P7_in)
|
||||
begin
|
||||
case P7_in is
|
||||
when "0000" =>
|
||||
P7_out <= "1111111110";
|
||||
when "0001" =>
|
||||
P7_out <= "1111111101";
|
||||
when "0010" =>
|
||||
P7_out <= "1111111011";
|
||||
when "0011" =>
|
||||
P7_out <= "1111110111";
|
||||
when "0100" =>
|
||||
P7_out <= "1111101111";
|
||||
when "0101" =>
|
||||
P7_out <= "1111011111";
|
||||
when "0110" =>
|
||||
P7_out <= "1110111111";
|
||||
when "0111" =>
|
||||
P7_out <= "1101111111";
|
||||
when "1000" =>
|
||||
P7_out <= "1011111111";
|
||||
when "1001" =>
|
||||
P7_out <= "0111111111";
|
||||
when others =>
|
||||
P7_out <= "1111111111";
|
||||
end case;
|
||||
end process;
|
||||
Crash_n <= P7_out(7);
|
||||
Motor1_n <= P7_out(5);
|
||||
LDH4_n <= P7_out(4);
|
||||
LDH3_n <= P7_out(3);
|
||||
LDH2_n <= P7_out(2);
|
||||
LDH1_n <= P7_out(1);
|
||||
|
||||
|
||||
-- Car 1 Horizontal position counter
|
||||
-- This combines two 74163s at locations R5 and R6 on the PCB
|
||||
R5_6: process(clk6, H256_s, LDH1_n, Display)
|
||||
begin
|
||||
if rising_edge(clk6) then
|
||||
if LDH1_n = '0' then -- preload the counter
|
||||
Car1_Hpos <= Display;
|
||||
elsif H256_s = '1' then -- increment the counter
|
||||
Car1_Hpos <= Car1_Hpos + '1';
|
||||
end if;
|
||||
if Car1_Hpos(7 downto 3) = "11111" then
|
||||
Car1_Inh <= '0';
|
||||
else
|
||||
Car1_Inh <= '1';
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Car 1 video shift register
|
||||
-- This combines two 74165s at locations M7 and N7 on the PCB
|
||||
M_N7: process(clk12, Car1_Inh, LDV1A_n, LDV1B_n, Vid)
|
||||
begin
|
||||
if LDV1A_n = '0' then
|
||||
Car1_reg(7 downto 0) <= Vid(7 downto 1) & '0'; -- Preload the LSB register
|
||||
elsif LDV1B_n = '0' then
|
||||
Car1_reg(15 downto 8) <= Vid(7 downto 0); -- Preload the MSB register
|
||||
elsif rising_edge(clk12) then
|
||||
if Car1_Inh = '0' then
|
||||
Car1_reg <= '0' & Car1_reg(15 downto 1);
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
Car1 <= Car1_reg(0);
|
||||
Car1_n <= not Car1_reg(0);
|
||||
|
||||
|
||||
-- Car 2 Horizontal position counter
|
||||
-- This combines two 74LS163s at locations P5 and P6 on the PCB
|
||||
P5_6: process(clk6, H256_s, LDH2_n, Display)
|
||||
begin
|
||||
if rising_edge(clk6) then
|
||||
if LDH2_n = '0' then -- preload the counter
|
||||
Car2_Hpos <= Display;
|
||||
elsif H256_s = '1' then -- increment the counter
|
||||
Car2_Hpos <= Car2_Hpos + '1';
|
||||
end if;
|
||||
if Car2_Hpos(7 downto 3) = "11111" then
|
||||
Car2_Inh <= '0';
|
||||
else
|
||||
Car2_Inh <= '1';
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Car 2 video shift register
|
||||
K_L7: process(clk12, Car2_Inh, LDV2A_n, LDV2B_n, Vid)
|
||||
begin
|
||||
if LDV2A_n = '0' then
|
||||
Car2_reg(7 downto 0) <= Vid(7 downto 1) & '0'; -- Preload the LSB register
|
||||
elsif LDV2B_n = '0' then
|
||||
Car2_reg(15 downto 8) <= Vid(7 downto 0); -- Preload the MSB register
|
||||
elsif rising_edge(clk12) then
|
||||
if Car2_Inh = '0' then
|
||||
Car2_reg <= '0' & Car2_reg(15 downto 1);
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
Car2 <= Car2_reg(0);
|
||||
Car2_n <= not Car2_reg(0);
|
||||
|
||||
|
||||
-- Car 3 Horizontal position counter
|
||||
-- This combines two 74LS163s at locations N5 and N6 on the PCB
|
||||
N5_6: process(clk6, H256_s, LDH3_n, Display)
|
||||
begin
|
||||
if rising_edge(clk6) then
|
||||
if LDH3_n = '0' then -- preload the counter
|
||||
Car3_Hpos <= Display;
|
||||
elsif H256_s = '1' then -- increment the counter
|
||||
Car3_Hpos <= Car3_Hpos + '1';
|
||||
end if;
|
||||
if Car3_Hpos(7 downto 3) = "11111" then
|
||||
Car3_Inh <= '0';
|
||||
else
|
||||
Car3_Inh <= '1';
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Car 3 video shift register
|
||||
H_J7: process(clk12, Car3_Inh, LDV3A_n, LDV3B_n, Vid)
|
||||
begin
|
||||
if LDV3A_n = '0' then
|
||||
Car3_reg(7 downto 0) <= Vid(7 downto 1) & '0'; -- Preload the LSB register
|
||||
elsif LDV3B_n = '0' then
|
||||
Car3_reg(15 downto 8) <= Vid(7 downto 0); -- Preload the MSB register
|
||||
elsif rising_edge(clk12) then
|
||||
if Car3_Inh = '0' then
|
||||
Car3_reg <= '0' & Car3_reg(15 downto 1);
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
-- Car 4 Horizontal position counter
|
||||
-- This combines two 74LS163s at locations M5 and M6 on the PCB
|
||||
M5_6: process(clk6, H256_s, LDH4_n, Display)
|
||||
begin
|
||||
if rising_edge(clk6) then
|
||||
if LDH4_n = '0' then -- preload the counter
|
||||
Car4_Hpos <= Display;
|
||||
elsif H256_s = '1' then -- increment the counter
|
||||
Car4_Hpos <= Car4_Hpos + '1';
|
||||
end if;
|
||||
if Car4_Hpos(7 downto 3) = "11111" then
|
||||
Car4_Inh <= '0';
|
||||
else
|
||||
Car4_Inh <= '1';
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
-- Car 4 video shift register
|
||||
E_F7: process(clk12, Car4_Inh, LDV4A_n, LDV4B_n, Vid)
|
||||
begin
|
||||
if LDV4A_n = '0' then
|
||||
Car4_reg(7 downto 0) <= Vid(7 downto 1) & '0'; -- Preload the LSB register
|
||||
elsif LDV4B_n = '0' then
|
||||
Car4_reg(15 downto 8) <= Vid(7 downto 0); -- Preload the MSB register
|
||||
elsif rising_edge(clk12) then
|
||||
if Car4_Inh = '0' then
|
||||
Car4_reg <= '0' & Car4_reg(15 downto 1);
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
Car3_4_n <= not (Car3_reg(0) or Car4_reg(0));
|
||||
|
||||
end rtl;
|
||||
179
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/osd.sv
Normal file
179
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/osd.sv
Normal file
@@ -0,0 +1,179 @@
|
||||
// A simple OSD implementation. Can be hooked up between a cores
|
||||
// VGA output and the physical VGA pins
|
||||
|
||||
module osd (
|
||||
// OSDs pixel clock, should be synchronous to cores pixel clock to
|
||||
// avoid jitter.
|
||||
input clk_sys,
|
||||
|
||||
// SPI interface
|
||||
input SPI_SCK,
|
||||
input SPI_SS3,
|
||||
input SPI_DI,
|
||||
|
||||
// VGA signals coming from core
|
||||
input [5:0] R_in,
|
||||
input [5:0] G_in,
|
||||
input [5:0] B_in,
|
||||
input HSync,
|
||||
input VSync,
|
||||
|
||||
// VGA signals going to video connector
|
||||
output [5:0] R_out,
|
||||
output [5:0] G_out,
|
||||
output [5:0] B_out
|
||||
);
|
||||
|
||||
parameter OSD_X_OFFSET = 10'd0;
|
||||
parameter OSD_Y_OFFSET = 10'd0;
|
||||
parameter OSD_COLOR = 3'd0;
|
||||
|
||||
localparam OSD_WIDTH = 10'd256;
|
||||
localparam OSD_HEIGHT = 10'd128;
|
||||
|
||||
// *********************************************************************************
|
||||
// spi client
|
||||
// *********************************************************************************
|
||||
|
||||
// this core supports only the display related OSD commands
|
||||
// of the minimig
|
||||
reg osd_enable;
|
||||
(* ramstyle = "no_rw_check" *) reg [7:0] osd_buffer[2047:0]; // the OSD buffer itself
|
||||
|
||||
// the OSD has its own SPI interface to the io controller
|
||||
always@(posedge SPI_SCK, posedge SPI_SS3) begin
|
||||
reg [4:0] cnt;
|
||||
reg [10:0] bcnt;
|
||||
reg [7:0] sbuf;
|
||||
reg [7:0] cmd;
|
||||
|
||||
if(SPI_SS3) begin
|
||||
cnt <= 0;
|
||||
bcnt <= 0;
|
||||
end else begin
|
||||
sbuf <= {sbuf[6:0], SPI_DI};
|
||||
|
||||
// 0:7 is command, rest payload
|
||||
if(cnt < 15) cnt <= cnt + 1'd1;
|
||||
else cnt <= 8;
|
||||
|
||||
if(cnt == 7) begin
|
||||
cmd <= {sbuf[6:0], SPI_DI};
|
||||
|
||||
// lower three command bits are line address
|
||||
bcnt <= {sbuf[1:0], SPI_DI, 8'h00};
|
||||
|
||||
// command 0x40: OSDCMDENABLE, OSDCMDDISABLE
|
||||
if(sbuf[6:3] == 4'b0100) osd_enable <= SPI_DI;
|
||||
end
|
||||
|
||||
// command 0x20: OSDCMDWRITE
|
||||
if((cmd[7:3] == 5'b00100) && (cnt == 15)) begin
|
||||
osd_buffer[bcnt] <= {sbuf[6:0], SPI_DI};
|
||||
bcnt <= bcnt + 1'd1;
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
// *********************************************************************************
|
||||
// video timing and sync polarity anaylsis
|
||||
// *********************************************************************************
|
||||
|
||||
// horizontal counter
|
||||
reg [9:0] h_cnt;
|
||||
reg [9:0] hs_low, hs_high;
|
||||
wire hs_pol = hs_high < hs_low;
|
||||
wire [9:0] dsp_width = hs_pol ? hs_low : hs_high;
|
||||
|
||||
// vertical counter
|
||||
reg [9:0] v_cnt;
|
||||
reg [9:0] vs_low, vs_high;
|
||||
wire vs_pol = vs_high < vs_low;
|
||||
wire [9:0] dsp_height = vs_pol ? vs_low : vs_high;
|
||||
|
||||
wire doublescan = (dsp_height>350);
|
||||
|
||||
reg ce_pix;
|
||||
always @(negedge clk_sys) begin
|
||||
integer cnt = 0;
|
||||
integer pixsz, pixcnt;
|
||||
reg hs;
|
||||
|
||||
cnt <= cnt + 1;
|
||||
hs <= HSync;
|
||||
|
||||
pixcnt <= pixcnt + 1;
|
||||
if(pixcnt == pixsz) pixcnt <= 0;
|
||||
ce_pix <= !pixcnt;
|
||||
|
||||
if(hs && ~HSync) begin
|
||||
cnt <= 0;
|
||||
pixsz <= (cnt >> 9) - 1;
|
||||
pixcnt <= 0;
|
||||
ce_pix <= 1;
|
||||
end
|
||||
end
|
||||
|
||||
always @(posedge clk_sys) begin
|
||||
reg hsD, hsD2;
|
||||
reg vsD, vsD2;
|
||||
|
||||
if(ce_pix) begin
|
||||
// bring hsync into local clock domain
|
||||
hsD <= HSync;
|
||||
hsD2 <= hsD;
|
||||
|
||||
// falling edge of HSync
|
||||
if(!hsD && hsD2) begin
|
||||
h_cnt <= 0;
|
||||
hs_high <= h_cnt;
|
||||
end
|
||||
|
||||
// rising edge of HSync
|
||||
else if(hsD && !hsD2) begin
|
||||
h_cnt <= 0;
|
||||
hs_low <= h_cnt;
|
||||
v_cnt <= v_cnt + 1'd1;
|
||||
end else begin
|
||||
h_cnt <= h_cnt + 1'd1;
|
||||
end
|
||||
|
||||
vsD <= VSync;
|
||||
vsD2 <= vsD;
|
||||
|
||||
// falling edge of VSync
|
||||
if(!vsD && vsD2) begin
|
||||
v_cnt <= 0;
|
||||
vs_high <= v_cnt;
|
||||
end
|
||||
|
||||
// rising edge of VSync
|
||||
else if(vsD && !vsD2) begin
|
||||
v_cnt <= 0;
|
||||
vs_low <= v_cnt;
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
// area in which OSD is being displayed
|
||||
wire [9:0] h_osd_start = ((dsp_width - OSD_WIDTH)>> 1) + OSD_X_OFFSET;
|
||||
wire [9:0] h_osd_end = h_osd_start + OSD_WIDTH;
|
||||
wire [9:0] v_osd_start = ((dsp_height- (OSD_HEIGHT<<doublescan))>> 1) + OSD_Y_OFFSET;
|
||||
wire [9:0] v_osd_end = v_osd_start + (OSD_HEIGHT<<doublescan);
|
||||
wire [9:0] osd_hcnt = h_cnt - h_osd_start + 1'd1; // one pixel offset for osd_byte register
|
||||
wire [9:0] osd_vcnt = v_cnt - v_osd_start;
|
||||
|
||||
wire osd_de = osd_enable &&
|
||||
(HSync != hs_pol) && (h_cnt >= h_osd_start) && (h_cnt < h_osd_end) &&
|
||||
(VSync != vs_pol) && (v_cnt >= v_osd_start) && (v_cnt < v_osd_end);
|
||||
|
||||
reg [7:0] osd_byte;
|
||||
always @(posedge clk_sys) if(ce_pix) osd_byte <= osd_buffer[{doublescan ? osd_vcnt[7:5] : osd_vcnt[6:4], osd_hcnt[7:0]}];
|
||||
|
||||
wire osd_pixel = osd_byte[doublescan ? osd_vcnt[4:2] : osd_vcnt[3:1]];
|
||||
|
||||
assign R_out = !osd_de ? R_in : {osd_pixel, osd_pixel, OSD_COLOR[2], R_in[5:3]};
|
||||
assign G_out = !osd_de ? G_in : {osd_pixel, osd_pixel, OSD_COLOR[1], G_in[5:3]};
|
||||
assign B_out = !osd_de ? B_in : {osd_pixel, osd_pixel, OSD_COLOR[0], B_in[5:3]};
|
||||
|
||||
endmodule
|
||||
170
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/playfield.vhd
Normal file
170
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/playfield.vhd
Normal file
@@ -0,0 +1,170 @@
|
||||
-- Playfield generation circuitry for Sprint 1 by Kee Games
|
||||
-- (c) 2017 James Sweet
|
||||
--
|
||||
-- This is free software: you can redistribute
|
||||
-- it and/or modify it under the terms of the GNU General
|
||||
-- Public License as published by the Free Software
|
||||
-- Foundation, either version 3 of the License, or (at your
|
||||
-- option) any later version.
|
||||
--
|
||||
-- This is distributed in the hope that it will
|
||||
-- be useful, but WITHOUT ANY WARRANTY; without even the
|
||||
-- implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
-- PARTICULAR PURPOSE. See the GNU General Public License
|
||||
-- for more details.
|
||||
|
||||
library IEEE;
|
||||
use IEEE.STD_LOGIC_1164.all;
|
||||
use IEEE.STD_LOGIC_ARITH.all;
|
||||
use IEEE.STD_LOGIC_UNSIGNED.all;
|
||||
|
||||
entity playfield is
|
||||
port(
|
||||
Clk6 : in std_logic;
|
||||
Display : in std_logic_vector(7 downto 0);
|
||||
HCount : in std_logic_vector(8 downto 0);
|
||||
VCount : in std_logic_vector(7 downto 0);
|
||||
H256_s : out std_logic;
|
||||
HBlank : in std_logic;
|
||||
VBlank : in std_logic;
|
||||
VBlank_n_s : in std_logic; -- VBLANK* on the schematic
|
||||
HSync : in std_logic;
|
||||
VSync : in std_logic;
|
||||
CompSync_n_s : out std_logic; -- COMP SYNC* on schematic
|
||||
CompBlank_s : out std_logic; -- COMP BLANK* on schematic
|
||||
WhitePF_n : out std_logic;
|
||||
BlackPF_n : out std_logic
|
||||
);
|
||||
end playfield;
|
||||
|
||||
architecture rtl of playfield is
|
||||
|
||||
signal H1 : std_logic;
|
||||
signal H2 : std_logic;
|
||||
signal H4 : std_logic;
|
||||
signal H256 : std_logic;
|
||||
signal H256_n : std_logic;
|
||||
|
||||
signal V1 : std_logic;
|
||||
signal V2 : std_logic;
|
||||
signal V4 : std_logic;
|
||||
|
||||
signal char_addr : std_logic_vector(8 downto 0) := (others => '0');
|
||||
signal char_data : std_logic_vector(7 downto 0) := (others => '0');
|
||||
|
||||
signal shift_data : std_logic_vector(7 downto 0) := (others => '0');
|
||||
signal QH : std_logic;
|
||||
|
||||
signal R2_reg : std_logic_vector(3 downto 0) := (others => '0');
|
||||
|
||||
|
||||
-- These signals are based off the schematic and are formatted as Designator_PinNumber
|
||||
signal R7_12 : std_logic;
|
||||
signal P3_3 : std_logic;
|
||||
signal P2_13 : std_logic;
|
||||
signal P3_6 : std_logic;
|
||||
signal A6_6 : std_logic;
|
||||
signal A6_3 : std_logic;
|
||||
|
||||
begin
|
||||
|
||||
-- Video synchronization signals
|
||||
H1 <= Hcount(0);
|
||||
H2 <= Hcount(1);
|
||||
H4 <= Hcount(2);
|
||||
H256 <= Hcount(8);
|
||||
H256_n <= not(Hcount(8));
|
||||
|
||||
V1 <= Vcount(0);
|
||||
V2 <= Vcount(1);
|
||||
V4 <= Vcount(2);
|
||||
|
||||
-- Some glue logic, may be re-written later to be cleaner and easier to follow without referring to schematic
|
||||
R7_12 <= not(H1 and H2 and H4);
|
||||
|
||||
P3_3 <= (H256_n or R7_12);
|
||||
|
||||
P2_13 <= (HSync nor VSync);
|
||||
|
||||
P3_6 <= (HBlank or VBlank);
|
||||
|
||||
|
||||
|
||||
char_addr <= display(5 downto 0) & V4 & V2 & V1;
|
||||
|
||||
-- Background character ROMs
|
||||
R4: entity work.sprom
|
||||
generic map(
|
||||
init_file => "rtl/roms/6397-01r4.hex",
|
||||
widthad_a => 9,
|
||||
width_a => 4)
|
||||
port map(
|
||||
clock => clk6,
|
||||
Address => char_addr,
|
||||
q => char_data(3 downto 0)
|
||||
);
|
||||
|
||||
--R4: entity work.Char_MSB
|
||||
--port map(
|
||||
-- clock => clk6,
|
||||
-- Address => char_addr,
|
||||
-- q => char_data(3 downto 0)
|
||||
-- );
|
||||
|
||||
P4: entity work.sprom
|
||||
generic map(
|
||||
init_file => "rtl/roms/6396-01p4.hex",
|
||||
widthad_a => 9,
|
||||
width_a => 4)
|
||||
port map(
|
||||
clock => clk6,
|
||||
Address => char_addr,
|
||||
q => char_data(7 downto 4)
|
||||
);
|
||||
|
||||
--P4: entity work.Char_LSB
|
||||
--port map(
|
||||
-- clock => clk6,
|
||||
-- Address => char_addr,
|
||||
-- q => char_data(7 downto 4)
|
||||
-- );
|
||||
|
||||
|
||||
-- 74LS166 video shift register
|
||||
R3: process(clk6, P3_3, VBlank_n_s, char_data, shift_data)
|
||||
begin
|
||||
if VBlank_n_s = '0' then -- Connected Clear input
|
||||
shift_data <= (others => '0');
|
||||
elsif rising_edge(clk6) then
|
||||
if P3_3 = '0' then -- Parallel load
|
||||
shift_data <= char_data(7 downto 0);
|
||||
else
|
||||
shift_data <= shift_data(6 downto 0) & '0';
|
||||
end if;
|
||||
end if;
|
||||
QH <= shift_data(7);
|
||||
end process;
|
||||
|
||||
|
||||
-- 9316 counter at R2
|
||||
-- CEP and CET tied to ground, counter is used only as a synchronous latch
|
||||
R2: process(clk6, R7_12, display, H256, P2_13, P3_6)
|
||||
begin
|
||||
if rising_edge(clk6) then
|
||||
if R7_12 = '0' then
|
||||
R2_reg <= (H256 & display(7) & P3_6 & P2_13);
|
||||
end if;
|
||||
end if;
|
||||
end process;
|
||||
|
||||
|
||||
H256_s <= R2_reg(3);
|
||||
CompBlank_s <= R2_reg(1);
|
||||
CompSync_n_s <= R2_reg(0);
|
||||
A6_6 <= (R2_reg(2) and QH);
|
||||
A6_3 <= ((not R2_reg(2)) and QH);
|
||||
|
||||
WhitePF_n <= (not A6_6);
|
||||
BlackPF_n <= (not A6_3);
|
||||
|
||||
end rtl;
|
||||
337
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/pll.v
Normal file
337
Arcade_MiST/Custom Hardware/SprintOne_MiST/rtl/pll.v
Normal file
@@ -0,0 +1,337 @@
|
||||
// megafunction wizard: %ALTPLL%
|
||||
// GENERATION: STANDARD
|
||||
// VERSION: WM1.0
|
||||
// MODULE: altpll
|
||||
|
||||
// ============================================================
|
||||
// File Name: pll.v
|
||||
// Megafunction Name(s):
|
||||
// altpll
|
||||
//
|
||||
// Simulation Library Files(s):
|
||||
// altera_mf
|
||||
// ============================================================
|
||||
// ************************************************************
|
||||
// THIS IS A WIZARD-GENERATED FILE. DO NOT EDIT THIS FILE!
|
||||
//
|
||||
// 13.1.4 Build 182 03/12/2014 SJ Web Edition
|
||||
// ************************************************************
|
||||
|
||||
|
||||
//Copyright (C) 1991-2014 Altera Corporation
|
||||
//Your use of Altera Corporation's design tools, logic functions
|
||||
//and other software and tools, and its AMPP partner logic
|
||||
//functions, and any output files from any of the foregoing
|
||||
//(including device programming or simulation files), and any
|
||||
//associated documentation or information are expressly subject
|
||||
//to the terms and conditions of the Altera Program License
|
||||
//Subscription Agreement, Altera MegaCore Function License
|
||||
//Agreement, or other applicable license agreement, including,
|
||||
//without limitation, that your use is for the sole purpose of
|
||||
//programming logic devices manufactured by Altera and sold by
|
||||
//Altera or its authorized distributors. Please refer to the
|
||||
//applicable agreement for further details.
|
||||
|
||||
|
||||
// synopsys translate_off
|
||||
`timescale 1 ps / 1 ps
|
||||
// synopsys translate_on
|
||||
module pll (
|
||||
inclk0,
|
||||
c0,
|
||||
c1,
|
||||
locked);
|
||||
|
||||
input inclk0;
|
||||
output c0;
|
||||
output c1;
|
||||
output locked;
|
||||
|
||||
wire [4:0] sub_wire0;
|
||||
wire sub_wire2;
|
||||
wire [0:0] sub_wire6 = 1'h0;
|
||||
wire [0:0] sub_wire3 = sub_wire0[0:0];
|
||||
wire [1:1] sub_wire1 = sub_wire0[1:1];
|
||||
wire c1 = sub_wire1;
|
||||
wire locked = sub_wire2;
|
||||
wire c0 = sub_wire3;
|
||||
wire sub_wire4 = inclk0;
|
||||
wire [1:0] sub_wire5 = {sub_wire6, sub_wire4};
|
||||
|
||||
altpll altpll_component (
|
||||
.inclk (sub_wire5),
|
||||
.clk (sub_wire0),
|
||||
.locked (sub_wire2),
|
||||
.activeclock (),
|
||||
.areset (1'b0),
|
||||
.clkbad (),
|
||||
.clkena ({6{1'b1}}),
|
||||
.clkloss (),
|
||||
.clkswitch (1'b0),
|
||||
.configupdate (1'b0),
|
||||
.enable0 (),
|
||||
.enable1 (),
|
||||
.extclk (),
|
||||
.extclkena ({4{1'b1}}),
|
||||
.fbin (1'b1),
|
||||
.fbmimicbidir (),
|
||||
.fbout (),
|
||||
.fref (),
|
||||
.icdrclk (),
|
||||
.pfdena (1'b1),
|
||||
.phasecounterselect ({4{1'b1}}),
|
||||
.phasedone (),
|
||||
.phasestep (1'b1),
|
||||
.phaseupdown (1'b1),
|
||||
.pllena (1'b1),
|
||||
.scanaclr (1'b0),
|
||||
.scanclk (1'b0),
|
||||
.scanclkena (1'b1),
|
||||
.scandata (1'b0),
|
||||
.scandataout (),
|
||||
.scandone (),
|
||||
.scanread (1'b0),
|
||||
.scanwrite (1'b0),
|
||||
.sclkout0 (),
|
||||
.sclkout1 (),
|
||||
.vcooverrange (),
|
||||
.vcounderrange ());
|
||||
defparam
|
||||
altpll_component.bandwidth_type = "AUTO",
|
||||
altpll_component.clk0_divide_by = 125,
|
||||
altpll_component.clk0_duty_cycle = 50,
|
||||
altpll_component.clk0_multiply_by = 224,
|
||||
altpll_component.clk0_phase_shift = "0",
|
||||
altpll_component.clk1_divide_by = 125,
|
||||
altpll_component.clk1_duty_cycle = 50,
|
||||
altpll_component.clk1_multiply_by = 56,
|
||||
altpll_component.clk1_phase_shift = "0",
|
||||
altpll_component.compensate_clock = "CLK0",
|
||||
altpll_component.inclk0_input_frequency = 37037,
|
||||
altpll_component.intended_device_family = "Cyclone III",
|
||||
altpll_component.lpm_hint = "CBX_MODULE_PREFIX=pll",
|
||||
altpll_component.lpm_type = "altpll",
|
||||
altpll_component.operation_mode = "NORMAL",
|
||||
altpll_component.pll_type = "AUTO",
|
||||
altpll_component.port_activeclock = "PORT_UNUSED",
|
||||
altpll_component.port_areset = "PORT_UNUSED",
|
||||
altpll_component.port_clkbad0 = "PORT_UNUSED",
|
||||
altpll_component.port_clkbad1 = "PORT_UNUSED",
|
||||
altpll_component.port_clkloss = "PORT_UNUSED",
|
||||
altpll_component.port_clkswitch = "PORT_UNUSED",
|
||||
altpll_component.port_configupdate = "PORT_UNUSED",
|
||||
altpll_component.port_fbin = "PORT_UNUSED",
|
||||
altpll_component.port_inclk0 = "PORT_USED",
|
||||
altpll_component.port_inclk1 = "PORT_UNUSED",
|
||||
altpll_component.port_locked = "PORT_USED",
|
||||
altpll_component.port_pfdena = "PORT_UNUSED",
|
||||
altpll_component.port_phasecounterselect = "PORT_UNUSED",
|
||||
altpll_component.port_phasedone = "PORT_UNUSED",
|
||||
altpll_component.port_phasestep = "PORT_UNUSED",
|
||||
altpll_component.port_phaseupdown = "PORT_UNUSED",
|
||||
altpll_component.port_pllena = "PORT_UNUSED",
|
||||
altpll_component.port_scanaclr = "PORT_UNUSED",
|
||||
altpll_component.port_scanclk = "PORT_UNUSED",
|
||||
altpll_component.port_scanclkena = "PORT_UNUSED",
|
||||
altpll_component.port_scandata = "PORT_UNUSED",
|
||||
altpll_component.port_scandataout = "PORT_UNUSED",
|
||||
altpll_component.port_scandone = "PORT_UNUSED",
|
||||
altpll_component.port_scanread = "PORT_UNUSED",
|
||||
altpll_component.port_scanwrite = "PORT_UNUSED",
|
||||
altpll_component.port_clk0 = "PORT_USED",
|
||||
altpll_component.port_clk1 = "PORT_USED",
|
||||
altpll_component.port_clk2 = "PORT_UNUSED",
|
||||
altpll_component.port_clk3 = "PORT_UNUSED",
|
||||
altpll_component.port_clk4 = "PORT_UNUSED",
|
||||
altpll_component.port_clk5 = "PORT_UNUSED",
|
||||
altpll_component.port_clkena0 = "PORT_UNUSED",
|
||||
altpll_component.port_clkena1 = "PORT_UNUSED",
|
||||
altpll_component.port_clkena2 = "PORT_UNUSED",
|
||||
altpll_component.port_clkena3 = "PORT_UNUSED",
|
||||
altpll_component.port_clkena4 = "PORT_UNUSED",
|
||||
altpll_component.port_clkena5 = "PORT_UNUSED",
|
||||
altpll_component.port_extclk0 = "PORT_UNUSED",
|
||||
altpll_component.port_extclk1 = "PORT_UNUSED",
|
||||
altpll_component.port_extclk2 = "PORT_UNUSED",
|
||||
altpll_component.port_extclk3 = "PORT_UNUSED",
|
||||
altpll_component.self_reset_on_loss_lock = "OFF",
|
||||
altpll_component.width_clock = 5;
|
||||
|
||||
|
||||
endmodule
|
||||
|
||||
// ============================================================
|
||||
// CNX file retrieval info
|
||||
// ============================================================
|
||||
// Retrieval info: PRIVATE: ACTIVECLK_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: BANDWIDTH STRING "1.000"
|
||||
// Retrieval info: PRIVATE: BANDWIDTH_FEATURE_ENABLED STRING "1"
|
||||
// Retrieval info: PRIVATE: BANDWIDTH_FREQ_UNIT STRING "MHz"
|
||||
// Retrieval info: PRIVATE: BANDWIDTH_PRESET STRING "Low"
|
||||
// Retrieval info: PRIVATE: BANDWIDTH_USE_AUTO STRING "1"
|
||||
// Retrieval info: PRIVATE: BANDWIDTH_USE_PRESET STRING "0"
|
||||
// Retrieval info: PRIVATE: CLKBAD_SWITCHOVER_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: CLKLOSS_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: CLKSWITCH_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: CNX_NO_COMPENSATE_RADIO STRING "0"
|
||||
// Retrieval info: PRIVATE: CREATE_CLKBAD_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: CREATE_INCLK1_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: CUR_DEDICATED_CLK STRING "c0"
|
||||
// Retrieval info: PRIVATE: CUR_FBIN_CLK STRING "c0"
|
||||
// Retrieval info: PRIVATE: DEVICE_SPEED_GRADE STRING "8"
|
||||
// Retrieval info: PRIVATE: DIV_FACTOR0 NUMERIC "125"
|
||||
// Retrieval info: PRIVATE: DIV_FACTOR1 NUMERIC "125"
|
||||
// Retrieval info: PRIVATE: DUTY_CYCLE0 STRING "50.00000000"
|
||||
// Retrieval info: PRIVATE: DUTY_CYCLE1 STRING "50.00000000"
|
||||
// Retrieval info: PRIVATE: EFF_OUTPUT_FREQ_VALUE0 STRING "48.383999"
|
||||
// Retrieval info: PRIVATE: EFF_OUTPUT_FREQ_VALUE1 STRING "12.096000"
|
||||
// Retrieval info: PRIVATE: EXPLICIT_SWITCHOVER_COUNTER STRING "0"
|
||||
// Retrieval info: PRIVATE: EXT_FEEDBACK_RADIO STRING "0"
|
||||
// Retrieval info: PRIVATE: GLOCKED_COUNTER_EDIT_CHANGED STRING "1"
|
||||
// Retrieval info: PRIVATE: GLOCKED_FEATURE_ENABLED STRING "0"
|
||||
// Retrieval info: PRIVATE: GLOCKED_MODE_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: GLOCK_COUNTER_EDIT NUMERIC "1048575"
|
||||
// Retrieval info: PRIVATE: HAS_MANUAL_SWITCHOVER STRING "1"
|
||||
// Retrieval info: PRIVATE: INCLK0_FREQ_EDIT STRING "27.000"
|
||||
// Retrieval info: PRIVATE: INCLK0_FREQ_UNIT_COMBO STRING "MHz"
|
||||
// Retrieval info: PRIVATE: INCLK1_FREQ_EDIT STRING "100.000"
|
||||
// Retrieval info: PRIVATE: INCLK1_FREQ_EDIT_CHANGED STRING "1"
|
||||
// Retrieval info: PRIVATE: INCLK1_FREQ_UNIT_CHANGED STRING "1"
|
||||
// Retrieval info: PRIVATE: INCLK1_FREQ_UNIT_COMBO STRING "MHz"
|
||||
// Retrieval info: PRIVATE: INTENDED_DEVICE_FAMILY STRING "Cyclone III"
|
||||
// Retrieval info: PRIVATE: INT_FEEDBACK__MODE_RADIO STRING "1"
|
||||
// Retrieval info: PRIVATE: LOCKED_OUTPUT_CHECK STRING "1"
|
||||
// Retrieval info: PRIVATE: LONG_SCAN_RADIO STRING "1"
|
||||
// Retrieval info: PRIVATE: LVDS_MODE_DATA_RATE STRING "Not Available"
|
||||
// Retrieval info: PRIVATE: LVDS_MODE_DATA_RATE_DIRTY NUMERIC "0"
|
||||
// Retrieval info: PRIVATE: LVDS_PHASE_SHIFT_UNIT0 STRING "deg"
|
||||
// Retrieval info: PRIVATE: LVDS_PHASE_SHIFT_UNIT1 STRING "ps"
|
||||
// Retrieval info: PRIVATE: MIG_DEVICE_SPEED_GRADE STRING "Any"
|
||||
// Retrieval info: PRIVATE: MIRROR_CLK0 STRING "0"
|
||||
// Retrieval info: PRIVATE: MIRROR_CLK1 STRING "0"
|
||||
// Retrieval info: PRIVATE: MULT_FACTOR0 NUMERIC "224"
|
||||
// Retrieval info: PRIVATE: MULT_FACTOR1 NUMERIC "56"
|
||||
// Retrieval info: PRIVATE: NORMAL_MODE_RADIO STRING "1"
|
||||
// Retrieval info: PRIVATE: OUTPUT_FREQ0 STRING "48.38400000"
|
||||
// Retrieval info: PRIVATE: OUTPUT_FREQ1 STRING "12.09600000"
|
||||
// Retrieval info: PRIVATE: OUTPUT_FREQ_MODE0 STRING "0"
|
||||
// Retrieval info: PRIVATE: OUTPUT_FREQ_MODE1 STRING "0"
|
||||
// Retrieval info: PRIVATE: OUTPUT_FREQ_UNIT0 STRING "MHz"
|
||||
// Retrieval info: PRIVATE: OUTPUT_FREQ_UNIT1 STRING "MHz"
|
||||
// Retrieval info: PRIVATE: PHASE_RECONFIG_FEATURE_ENABLED STRING "1"
|
||||
// Retrieval info: PRIVATE: PHASE_RECONFIG_INPUTS_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: PHASE_SHIFT0 STRING "0.00000000"
|
||||
// Retrieval info: PRIVATE: PHASE_SHIFT1 STRING "0.00000000"
|
||||
// Retrieval info: PRIVATE: PHASE_SHIFT_STEP_ENABLED_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: PHASE_SHIFT_UNIT0 STRING "deg"
|
||||
// Retrieval info: PRIVATE: PHASE_SHIFT_UNIT1 STRING "deg"
|
||||
// Retrieval info: PRIVATE: PLL_ADVANCED_PARAM_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: PLL_ARESET_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: PLL_AUTOPLL_CHECK NUMERIC "1"
|
||||
// Retrieval info: PRIVATE: PLL_ENHPLL_CHECK NUMERIC "0"
|
||||
// Retrieval info: PRIVATE: PLL_FASTPLL_CHECK NUMERIC "0"
|
||||
// Retrieval info: PRIVATE: PLL_FBMIMIC_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: PLL_LVDS_PLL_CHECK NUMERIC "0"
|
||||
// Retrieval info: PRIVATE: PLL_PFDENA_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: PLL_TARGET_HARCOPY_CHECK NUMERIC "0"
|
||||
// Retrieval info: PRIVATE: PRIMARY_CLK_COMBO STRING "inclk0"
|
||||
// Retrieval info: PRIVATE: RECONFIG_FILE STRING "pll.mif"
|
||||
// Retrieval info: PRIVATE: SACN_INPUTS_CHECK STRING "0"
|
||||
// Retrieval info: PRIVATE: SCAN_FEATURE_ENABLED STRING "1"
|
||||
// Retrieval info: PRIVATE: SELF_RESET_LOCK_LOSS STRING "0"
|
||||
// Retrieval info: PRIVATE: SHORT_SCAN_RADIO STRING "0"
|
||||
// Retrieval info: PRIVATE: SPREAD_FEATURE_ENABLED STRING "0"
|
||||
// Retrieval info: PRIVATE: SPREAD_FREQ STRING "50.000"
|
||||
// Retrieval info: PRIVATE: SPREAD_FREQ_UNIT STRING "KHz"
|
||||
// Retrieval info: PRIVATE: SPREAD_PERCENT STRING "0.500"
|
||||
// Retrieval info: PRIVATE: SPREAD_USE STRING "0"
|
||||
// Retrieval info: PRIVATE: SRC_SYNCH_COMP_RADIO STRING "0"
|
||||
// Retrieval info: PRIVATE: STICKY_CLK0 STRING "1"
|
||||
// Retrieval info: PRIVATE: STICKY_CLK1 STRING "1"
|
||||
// Retrieval info: PRIVATE: SWITCHOVER_COUNT_EDIT NUMERIC "1"
|
||||
// Retrieval info: PRIVATE: SWITCHOVER_FEATURE_ENABLED STRING "1"
|
||||
// Retrieval info: PRIVATE: SYNTH_WRAPPER_GEN_POSTFIX STRING "0"
|
||||
// Retrieval info: PRIVATE: USE_CLK0 STRING "1"
|
||||
// Retrieval info: PRIVATE: USE_CLK1 STRING "1"
|
||||
// Retrieval info: PRIVATE: USE_CLKENA0 STRING "0"
|
||||
// Retrieval info: PRIVATE: USE_CLKENA1 STRING "0"
|
||||
// Retrieval info: PRIVATE: USE_MIL_SPEED_GRADE NUMERIC "0"
|
||||
// Retrieval info: PRIVATE: ZERO_DELAY_RADIO STRING "0"
|
||||
// Retrieval info: LIBRARY: altera_mf altera_mf.altera_mf_components.all
|
||||
// Retrieval info: CONSTANT: BANDWIDTH_TYPE STRING "AUTO"
|
||||
// Retrieval info: CONSTANT: CLK0_DIVIDE_BY NUMERIC "125"
|
||||
// Retrieval info: CONSTANT: CLK0_DUTY_CYCLE NUMERIC "50"
|
||||
// Retrieval info: CONSTANT: CLK0_MULTIPLY_BY NUMERIC "224"
|
||||
// Retrieval info: CONSTANT: CLK0_PHASE_SHIFT STRING "0"
|
||||
// Retrieval info: CONSTANT: CLK1_DIVIDE_BY NUMERIC "125"
|
||||
// Retrieval info: CONSTANT: CLK1_DUTY_CYCLE NUMERIC "50"
|
||||
// Retrieval info: CONSTANT: CLK1_MULTIPLY_BY NUMERIC "56"
|
||||
// Retrieval info: CONSTANT: CLK1_PHASE_SHIFT STRING "0"
|
||||
// Retrieval info: CONSTANT: COMPENSATE_CLOCK STRING "CLK0"
|
||||
// Retrieval info: CONSTANT: INCLK0_INPUT_FREQUENCY NUMERIC "37037"
|
||||
// Retrieval info: CONSTANT: INTENDED_DEVICE_FAMILY STRING "Cyclone III"
|
||||
// Retrieval info: CONSTANT: LPM_TYPE STRING "altpll"
|
||||
// Retrieval info: CONSTANT: OPERATION_MODE STRING "NORMAL"
|
||||
// Retrieval info: CONSTANT: PLL_TYPE STRING "AUTO"
|
||||
// Retrieval info: CONSTANT: PORT_ACTIVECLOCK STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_ARESET STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_CLKBAD0 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_CLKBAD1 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_CLKLOSS STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_CLKSWITCH STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_CONFIGUPDATE STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_FBIN STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_INCLK0 STRING "PORT_USED"
|
||||
// Retrieval info: CONSTANT: PORT_INCLK1 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_LOCKED STRING "PORT_USED"
|
||||
// Retrieval info: CONSTANT: PORT_PFDENA STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_PHASECOUNTERSELECT STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_PHASEDONE STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_PHASESTEP STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_PHASEUPDOWN STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_PLLENA STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANACLR STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANCLK STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANCLKENA STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANDATA STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANDATAOUT STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANDONE STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANREAD STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_SCANWRITE STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clk0 STRING "PORT_USED"
|
||||
// Retrieval info: CONSTANT: PORT_clk1 STRING "PORT_USED"
|
||||
// Retrieval info: CONSTANT: PORT_clk2 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clk3 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clk4 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clk5 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clkena0 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clkena1 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clkena2 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clkena3 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clkena4 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_clkena5 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_extclk0 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_extclk1 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_extclk2 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: PORT_extclk3 STRING "PORT_UNUSED"
|
||||
// Retrieval info: CONSTANT: SELF_RESET_ON_LOSS_LOCK STRING "OFF"
|
||||
// Retrieval info: CONSTANT: WIDTH_CLOCK NUMERIC "5"
|
||||
// Retrieval info: USED_PORT: @clk 0 0 5 0 OUTPUT_CLK_EXT VCC "@clk[4..0]"
|
||||
// Retrieval info: USED_PORT: c0 0 0 0 0 OUTPUT_CLK_EXT VCC "c0"
|
||||
// Retrieval info: USED_PORT: c1 0 0 0 0 OUTPUT_CLK_EXT VCC "c1"
|
||||
// Retrieval info: USED_PORT: inclk0 0 0 0 0 INPUT_CLK_EXT GND "inclk0"
|
||||
// Retrieval info: USED_PORT: locked 0 0 0 0 OUTPUT GND "locked"
|
||||
// Retrieval info: CONNECT: @inclk 0 0 1 1 GND 0 0 0 0
|
||||
// Retrieval info: CONNECT: @inclk 0 0 1 0 inclk0 0 0 0 0
|
||||
// Retrieval info: CONNECT: c0 0 0 0 0 @clk 0 0 1 0
|
||||
// Retrieval info: CONNECT: c1 0 0 0 0 @clk 0 0 1 1
|
||||
// Retrieval info: CONNECT: locked 0 0 0 0 @locked 0 0 0 0
|
||||
// Retrieval info: GEN_FILE: TYPE_NORMAL pll.v TRUE
|
||||
// Retrieval info: GEN_FILE: TYPE_NORMAL pll.ppf TRUE
|
||||
// Retrieval info: GEN_FILE: TYPE_NORMAL pll.inc FALSE
|
||||
// Retrieval info: GEN_FILE: TYPE_NORMAL pll.cmp FALSE
|
||||
// Retrieval info: GEN_FILE: TYPE_NORMAL pll.bsf FALSE
|
||||
// Retrieval info: GEN_FILE: TYPE_NORMAL pll_inst.v FALSE
|
||||
// Retrieval info: GEN_FILE: TYPE_NORMAL pll_bb.v FALSE
|
||||
// Retrieval info: LIB_FILE: altera_mf
|
||||
// Retrieval info: CBX_MODULE_PREFIX: ON
|
||||
@@ -0,0 +1,129 @@
|
||||
:100000000620262120053FCCCCCCCCCC9344555F98
|
||||
:10001000CCCCCCCCCC95FB2223334444D94555FBE6
|
||||
:100020002222233444D9A222223444444E655FB2B2
|
||||
:1000300012222234444EA221122244444E65FB1166
|
||||
:1000400012222224544EA223222243344E6FB11195
|
||||
:1000500022222123434EA230018344334EFB11114F
|
||||
:100060001111F833444EA1000E0A34444DB1111160
|
||||
:10007000111FB2A4444EA0000E6A33333311122173
|
||||
:1000800011FB12A4444EA0000E6A33233111222129
|
||||
:100090001FB112A4444EA0000E6A22221122211187
|
||||
:1000A000FB1112A4544EA0000D9D91111221111F9D
|
||||
:1000B000B1111FB5544EA07007DCCCCCCCCCCCCC4D
|
||||
:1000C000CCCCCB55544EA0007666666666666666F6
|
||||
:1000D00065566666644EA001666666667766666605
|
||||
:1000E00066666666655EA0007666666666667766C4
|
||||
:1000F00066666666655EA0007766666665566666D5
|
||||
:1001000066666666666ED9000776666666666666C9
|
||||
:100110006666776666FB1D888888888888888888F0
|
||||
:100120008888888888B72C214C2260043FCCCCCCAE
|
||||
:10013000C9223333333223FCCCCCCC95FB3333444C
|
||||
:100140004D92233333333FB3333444D9A223333472
|
||||
:1001500044E3FCCCCCC92A233334444EA2223333AB
|
||||
:1001600044EFB333444D9A223334444EA222233316
|
||||
:1001700044EB23334444DA222334444EA222223374
|
||||
:1001800034E2223344445A121234444EA1111E2345
|
||||
:100190003331222334445A1217A4444EA1110E22A3
|
||||
:1001A0002311111134455A1107A4444EA1100E22F7
|
||||
:1001B00022111110A4455A1007A4444EA2000E9219
|
||||
:1001C0002111110FB3455A0007A4444EA0000ED9C7
|
||||
:1001D000111110FB3335FB0007A4444EA0000E7D27
|
||||
:1001E000888888A33333B10007A4444EA0000E775B
|
||||
:1001F000666666A22222110007A4444EA0000E7774
|
||||
:10020000666666A2222211000FA4444EA0000E775B
|
||||
:10021000666666A222211100FBA4444EA0000E7760
|
||||
:10022000666666D92211110FB5A4444EA0000D9741
|
||||
:100230006666666D8888888B5FB5444EA00007DCD3
|
||||
:10024000CCCCCCCCCCCCCCCCCB55444E5222722393
|
||||
:1002500060043FCCCCCCCCCC9543FCCCCCCCCCCC2F
|
||||
:10026000CC95FB2223333444D93FB222233333339A
|
||||
:1002700044D9A222223334444D8B222222333333F9
|
||||
:10028000444EA2222223344444E222222223333445
|
||||
:10029000444EA2222222344444E222222122334428
|
||||
:1002A000444EA11111FC944444E1111110FC9344FB
|
||||
:1002B000444EA11110D9A44444E1111100A1D94424
|
||||
:1002C000444EA111077DA44445E1111070D92A4480
|
||||
:1002D000444EA11F9777A44455E11100777D9A44BD
|
||||
:1002E000444EA10AE007A34455E910000077DA4420
|
||||
:1002F000444EA00DB107A33445ED900000777A4439
|
||||
:10030000444EA077100FB33444A2A00007077A44EC
|
||||
:10031000444EA00711FB333333CC110800007A445C
|
||||
:10032000444EA07710E22222222110E0A0007A445D
|
||||
:10033000445EA00010E222222211001C10007A4428
|
||||
:10034000455EA07710D92222222222211000FB54E0
|
||||
:10035000454EA000107D911111111111100FB554CF
|
||||
:10036000544EA0777077DCCCCCCCCCCCCCCB5554D5
|
||||
:10037000544E7823982460044FCCCCCCCCCCCCCC3D
|
||||
:10038000CCCCCCCCCCCCCC95FB222222222222225B
|
||||
:1003900022222222333344D9A222221221221233D2
|
||||
:1003A000333228222333444EA22222222222222325
|
||||
:1003B0003333D8B22233444EA222222222222222D6
|
||||
:1003C000233322222223445EA11111FCCCCCCCCCBD
|
||||
:1003D000C92222111FC9455EA1111FB444455555BC
|
||||
:1003E0006D911111FBFB555EA1110E34444555561C
|
||||
:1003F00066DCCCCCCCB5555EA1100E3344455566B9
|
||||
:10040000666666666666666EA1000E33344556669D
|
||||
:10041000666666666666666EA0000E33334589774B
|
||||
:10042000766666666666666EA0000E33333E3D975E
|
||||
:1004300077666667777777FBA0000E22233DCCCCEA
|
||||
:10044000CCCCCCCCCCCCCCA5A0000E22222222221B
|
||||
:1004500022222223334444D9A0000E222222222227
|
||||
:10046000222222223344455EA0000D922222222223
|
||||
:10047000222222222344555EA00007D91111111116
|
||||
:10048000111111222245555EA000077DCCCCCCCCA9
|
||||
:10049000CCCCCCCCCC55555E9E24BE2560043FCC44
|
||||
:1004A000CCCCCCCCCCCCCCCCCCCCCCCCCC95FB223E
|
||||
:1004B00022222222233222222223333444D9A2228E
|
||||
:1004C000222122222223222222223334444EA2221B
|
||||
:1004D000211222222222232222222334445EA2221B
|
||||
:1004E000222222222222222211222234455EA1111E
|
||||
:1004F0001F8888888888888888888844555EA111E4
|
||||
:1005000007665555555D9111FB555555555EA11022
|
||||
:10051000077666666666D91FB5555566666EA10094
|
||||
:100520000777666666666EFB44555666666ED9004A
|
||||
:100530000777766777666EB344456666666E1D908C
|
||||
:10054000077777777776FB3334466666666E3FCCFF
|
||||
:10055000CCCCC007777FB33333488888888BFB22A5
|
||||
:100560002222211077FB22222223333444D9A222D3
|
||||
:10057000222211100FA2222222223334444EA22220
|
||||
:1005800022111100FBA2222222222334445EA22245
|
||||
:100590002111100FB5D9222222222234455EA11149
|
||||
:1005A000111100FB555D911111111124555EA1111E
|
||||
:1005B00011DCCCCCCCCCCCCCCCCCCCB5555EC425D1
|
||||
:1005C000E42660043FCCCCCC953FCCCCCCCCCCCC7E
|
||||
:1005D000CCCCCC95FB333444D9FB222222222223DB
|
||||
:1005E000333444D9A22334444DA22222222222228F
|
||||
:1005F0003334444EA222334445A222222222222214
|
||||
:100600002334444EA222234445A111111F88888817
|
||||
:100610009334444EA111E34445A11111FB555555A6
|
||||
:10062000D934444EA110E34445A1111FB555556678
|
||||
:100630006D94444EA100E34445A1100E55555566F6
|
||||
:1006400066A4444EA000E33445A100075555566604
|
||||
:1006500066A4444EA000E33345A0000766665A77BF
|
||||
:1006600077A4444EA000E33334A000077666FB076E
|
||||
:1006700077A4444EA000E33333D90077776FB100FD
|
||||
:1006800077A4444EA000E333333DCCCCCCCB110057
|
||||
:1006900007A4444EA000E22222222222222111009D
|
||||
:1006A00000A4444EA000E2222222222222111100A4
|
||||
:1006B00000A4444EA000D92222222222211111009E
|
||||
:1006C0000FB5444EA0007D911111111111111100AF
|
||||
:1006D000FB55444EA00077DCCCCCCCCCCCCCCCCCE5
|
||||
:1006E000B555444EEA260A2860043FCCCCCCCCCC8D
|
||||
:1006F000CCCCCCCCCCCCCCCCCC95FB4445555666A4
|
||||
:10070000666666666666666666D9A444455566662C
|
||||
:100710006666666666666666666EA4444555666687
|
||||
:100720006666666666666666666EA344445F88882B
|
||||
:100730008888888888888897777EA333444D9FB3BC
|
||||
:1007400033333333333D9FB0777ED9333444DB22A8
|
||||
:10075000222223333333DB10077E1D93334442229E
|
||||
:100760002222223332222110007E11D93334122268
|
||||
:100770002222222222221110000E111D9333111168
|
||||
:100780001F88888922211110000E0001E113133304
|
||||
:100790003A11111D9211111000FB000FB1133333E8
|
||||
:1007A0003D933333D888888888B700FB11103333E2
|
||||
:1007B00033DCCCCCCCCCCCCCCC950FB111072222E5
|
||||
:1007C000222222222222333444D9FB111007F9229B
|
||||
:1007D0002222222222222334444EA111100FBD9244
|
||||
:1007E0002222222222222234444EA11000FB55D97B
|
||||
:1007F0001111111111112224444EA100007CCCCC06
|
||||
:00000001FF
|
||||
@@ -0,0 +1,129 @@
|
||||
:10000000CCCCCCCCCCCCCCB4444E10283029600421
|
||||
:100010003FCCCCCCCCC953FCCCCCCCCCCCCCCC9530
|
||||
:10002000FB233334444D9FB222222223334444D94C
|
||||
:10003000A22233344444EB22222222223344445E5F
|
||||
:10004000A22223344444E222222222222344455E77
|
||||
:10005000A22222344444E222222221111244555E7B
|
||||
:10006000A11110A44444E111111F88888845555EF0
|
||||
:10007000A11107A44444E111100A11FB4455556E27
|
||||
:10008000A11007A44444E111000D9FB44455566EDD
|
||||
:10009000A10007A34444E1100077EB344455666E99
|
||||
:1000A000A00007A33444E9100777E333445666FB06
|
||||
:1000B000A00007A33344ED900777E33334666FB7AE
|
||||
:1000C000A00007A33333D8B00077E333333CCC959B
|
||||
:1000D000A00007A2222222100007E233334444D9B1
|
||||
:1000E000A00007A2222221100000E2233344444E44
|
||||
:1000F000A00007A2222211100000E9222344444E4E
|
||||
:10010000A00007A222211110000FBD922244444EEC
|
||||
:10011000A00007D91111111000FB55D92245444EFA
|
||||
:10012000A000077DCCCCCCCCCCCCCCCCCC55444E98
|
||||
:100130003629562A60043FCCCCCCCCCCCCCCCCCC11
|
||||
:1001400093FCCCCCCC95FB222222222223333444B4
|
||||
:10015000D8B2333444D9A222222222222223344587
|
||||
:100160005A222334444EA222222222222222345511
|
||||
:100170005A222234444EA11111F888888888855566
|
||||
:100180005A1111F4444EA1111FB4444555566666E8
|
||||
:100190006A1110E4444EA111FB444455566666664C
|
||||
:1001A0006A1100E4444EA110E34444556666666655
|
||||
:1001B000FA1000E4444EA110E34444566666777F8B
|
||||
:1001C000BA0000E4444EA000E344445FCCCCCCCC65
|
||||
:1001D0009A0000E4444EA000E33444FB233333444C
|
||||
:1001E000DA0000E4444EA000E33344E22233333427
|
||||
:1001F0004A0000E4444EA000E33334E222233333C8
|
||||
:100200004A0000E4444EA000E2222221111F3222C3
|
||||
:10021000210000E4444EA000E2222211110E22220D
|
||||
:10022000110000E4444EA000D9222111100E9221A9
|
||||
:10023000110000E4444EA0007D91111100FBD91182
|
||||
:1002400011000FB5444EA00077DCCCCCCCCCCCCC8C
|
||||
:10025000CCCCCB55444E5C2A7C2B60043FCCCCCC20
|
||||
:10026000CCCCCC9543FCCCCCCCCCCC95FB444555EC
|
||||
:10027000666666D94FB22223333444D9A444455626
|
||||
:100280006666666E4A2222223334444EA344456693
|
||||
:100290006666666E4A2222222334444EA3344F8877
|
||||
:1002A0008897777E4A11111FC933444EA3334A33CE
|
||||
:1002B00077E0777E4A11110D9D93444EA3333DCCD8
|
||||
:1002C000CCC0077DCC911007D9A4444EA33333335F
|
||||
:1002D0003333002334D910077DA4444EA2222223B5
|
||||
:1002E00023220122344D900777A4444ED9222222A2
|
||||
:1002F000222202223444D90077A4444E3E888888C2
|
||||
:100300008881077F93445A0077A4444EFB33333DE2
|
||||
:1003100093E0077EE3345A0007A4444EA22233330D
|
||||
:10032000D8B0077EB3334A0007A4444EA22222224B
|
||||
:100330002210077E3333310007A4444EA22222222A
|
||||
:100340002110077E2222211007A4444EA1111892E9
|
||||
:100350001110077E222211100FB5444EA111E1D9D0
|
||||
:10036000111007FC91111110FB55444EA1107CCCCB
|
||||
:10037000CCCCCCCCCCCCCCCCB555444E822BA22C06
|
||||
:1003800060043FCCCCCCCCCCCCCCCCCC953FCCCC32
|
||||
:10039000CC95FB222222222233333444D9FB33343E
|
||||
:1003A00044D9A22222222222233334444EB22334BF
|
||||
:1003B000444EA22222222222223334444E222234CC
|
||||
:1003C000444EA11108888888889334444E22222400
|
||||
:1003D000444EA1100665555555D934444E2211E4BA
|
||||
:1003E000444EA11007665555555D94444E2110E4C6
|
||||
:1003F000444EA100077666666666E3444E1100E44B
|
||||
:10040000444ED900077766666666E3444E1000E402
|
||||
:10041000444E1D88888889777777E3444E0000E44E
|
||||
:10042000444E3FB333344D977777E3344E0000E4C6
|
||||
:10043000444EFB22223344E00777E3334E0000E4CE
|
||||
:10044000444EA222222334E00077E3333D0000E44F
|
||||
:10045000444EA222223333210007E222210000E48D
|
||||
:10046000444EA1110A2222110000E222110000E4F0
|
||||
:10047000444EA1100A222111000FC92111000FB50D
|
||||
:10048000444EA1000D91111100FB4D911100FB553F
|
||||
:10049000444EA00007DCCCCCCCCCCCCCCCCCB555DD
|
||||
:1004A000444EA82CC82D6004333FCCCCCCCCC953CF
|
||||
:1004B000FCCCCCCCCCCCCC9533FB333334445D9FDB
|
||||
:1004C000B2222222233344D93FB22233344455DAB4
|
||||
:1004D000222222222233445EFB2222233445555A13
|
||||
:1004E000222222222223455EA111111F4445555A82
|
||||
:1004F000111118888884555EA11111FB444555FBE4
|
||||
:100500001110EFB55556666EA1111FB444455FB189
|
||||
:100510001100EB555566666EA1110E344445FB1172
|
||||
:10052000110FB455556666FBA1100E34444FB1113E
|
||||
:1005300010FB44555F8888A5A1000E33444E11116D
|
||||
:100540000FB44445FB3344D9A0000E33344E111090
|
||||
:100550007A34445FB333444EA0000E33334E11005F
|
||||
:100560007A3344FB2333444EA0000E333332100061
|
||||
:100570007A3334B22233444EA0000E2222211000DE
|
||||
:100580007A2222222223444EA0000E2222111000A1
|
||||
:10059000FA22221111F3444EA0000D922111000FF6
|
||||
:1005A000BD9221111FBA444EA00007D9111100FBC2
|
||||
:1005B00055D91111FBFB544EA000077DCCCCCCCCFF
|
||||
:1005C000CCCCCCCCCCB5544E0093E22DEC2DF62DFA
|
||||
:1005D000002E0A2E142E1E2E282E322E3C2E462E93
|
||||
:1005E000502E5A2E5E2E622E662E6A2E5A2E6E2E99
|
||||
:1005F000722EA22E6A2E5A2E762E7A2ED22E6A2E87
|
||||
:100600005A2E7A2E7E2E822E6A2E862E8A2E8E2E9E
|
||||
:10061000922E6A2E962E9A2E9E2EA22E6A2E5A2E3A
|
||||
:10062000A62EAA2EAE2E6A2E5A2EB22EB62EBA2E76
|
||||
:100630006A2E962EBE2EC22EA22E6A2E962E9A2E8E
|
||||
:10064000C62EA22E6A2E962E9A2EC62EA22E6A2E66
|
||||
:10065000962ECA2ECE2ED22E6A2E6F6E6D6C7C7B9D
|
||||
:100660007A79838393A360606162273747578A9AB8
|
||||
:10067000AABA5565758598999A9BA4B4C4D48999EA
|
||||
:10068000A9B9545464745B6B7B8BBCBCCCDCB3B336
|
||||
:10069000C3D3536373836F6E6D6DBDBDCDDD959513
|
||||
:1006A000A5B5A0A0A1A28393A3B3BFBEBDBC535365
|
||||
:1006B0006373BFBEBDBC85868788B0B1B2B3B5B524
|
||||
:1006C000B6B77576777855556575A9AAABACB2B251
|
||||
:1006D000C2D260616263D205EA06FB05EA067205D2
|
||||
:1006E000EA064E06EA06C904EA060706EA064F05C8
|
||||
:1006F000EA06EA06EA06EA06EA06EA06EA06EA067A
|
||||
:10070000EA06EA06EA0600FEFCFAF8F7F6F5F5F561
|
||||
:10071000F6F7F8FAFCFE0002040608090A0B0B0BB8
|
||||
:100720000A09080604020B0B0A090806040200FE67
|
||||
:10073000FCFAF8F7F6F5F5F5F6F7F8FAFCFE000224
|
||||
:10074000040608090A0B0000FFFFEFFFDFFFCFFFE1
|
||||
:10075000BEFFAEFF9EFF9EFF9DEF9DEF9DEF9DEFC5
|
||||
:100760009CEF9CEF9CEF9CEF9BDE9BDE9BDE9BDE79
|
||||
:100770009ADE9ADE9ADE9ADE99CE99CE99CE99CEFD
|
||||
:1007800099CE99CE99CE71117111611162115311E7
|
||||
:100790003411252105210521F421F331F231E13114
|
||||
:1007A000E041E041D041DF32DF32CF22CF12CF0231
|
||||
:1007B000BE03BE03BEF3AEF3AEF3ADF39DF29DE216
|
||||
:1007C0009DE29CE19CE000000000000000000000B1
|
||||
:1007D0000000000000000000000000000000000019
|
||||
:1007E0000000000000000000000000000000000009
|
||||
:1007F00000000000000000000000000000000000F9
|
||||
:00000001FF
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user