Project

General

Profile

« Previous | Next » 

Revision 14

Added by markw over 11 years ago

Remove these, they are now common components.

View differences:

mcc216/zpu_config_regs.vhdl
---------------------------------------------------------------------------
-- (c) 2013 mark watson
-- I am happy for anyone to use this for non-commercial use.
-- If my vhdl files are used commercially or otherwise sold,
-- please contact me for explicit permission at scrameta (gmail).
-- This applies for source and binary form and derived works.
---------------------------------------------------------------------------
LIBRARY ieee;
USE ieee.std_logic_1164.all;
use ieee.numeric_std.all;
ENTITY zpu_config_regs IS
PORT
(
CLK : IN STD_LOGIC;
ENABLE_179 : in std_logic;
ADDR : IN STD_LOGIC_VECTOR(4 DOWNTO 0);
CPU_DATA_IN : IN STD_LOGIC_VECTOR(31 DOWNTO 0);
WR_EN : IN STD_LOGIC;
-- SWITCHES
SWITCH : in std_logic_vector(9 downto 0); -- already synchronized
KEY : in std_logic_vector(3 downto 0); -- already synchronized
-- LEDS
LEDG : out std_logic_vector(7 downto 0);
LEDR : out std_logic_vector(9 downto 0);
-- SDCARD
SDCARD_CLK : out std_logic;
SDCARD_CMD : out std_logic;
SDCARD_DAT : in std_logic;
SDCARD_DAT3 : out std_logic;
-- ATARI interface (in future we can also turbo load by directly hitting memory...)
SIO_DATA_IN : out std_logic;
SIO_COMMAND_OUT : in std_logic;
SIO_DATA_OUT : in std_logic;
-- CPU interface
DATA_OUT : OUT STD_LOGIC_VECTOR(31 DOWNTO 0);
PAUSE_ZPU : out std_logic;
-- SYSTEM CONFIG SETTINGS (legacy from switches - hardcoded to start with, then much fancier)
PAL : OUT STD_LOGIC;
USE_SDRAM : OUT STD_LOGIC;
RAM_SELECT : OUT STD_LOGIC_VECTOR(1 downto 0);
VGA : OUT STD_LOGIC;
COMPOSITE_ON_HSYNC : OUT STD_LOGIC;
GPIO_ENABLE : OUT STD_LOGIC;
ROM_SELECT : out stD_logic_vector(1 downto 0);
-- system reset/halt
PLL_LOCKED : IN STD_LOGIC; -- pll locked
REQUEST_RESET_ZPU : in std_logic; -- from keyboard (f12 to start with)
RESET_6502 : OUT STD_LOGIC; -- i.e. cpu reset - 6502
RESET_ZPU : OUT STD_LOGIC; -- i.e. cpu reset - zpu
RESET_N : OUT STD_LOGIC; -- i.e. reset line on flip flops
PAUSE_6502 : out std_logic;
THROTTLE_COUNT_6502 : out std_logic_vector(5 downto 0);
ZPU_HEX : out std_logic_vector(15 downto 0)
-- -- synchronize async inputs
-- locked_synchronizer : synchronizer
-- port map (clk=>clk, raw=>LOCKED, sync=>LOCKED_REG);
);
END zpu_config_regs;
ARCHITECTURE vhdl OF zpu_config_regs IS
COMPONENT complete_address_decoder IS
generic (width : natural := 4);
PORT
(
addr_in : in std_logic_vector(width-1 downto 0);
addr_decoded : out std_logic_vector((2**width)-1 downto 0)
);
END component;
COMPONENT spi_master IS
GENERIC(
slaves : INTEGER := 4; --number of spi slaves
d_width : INTEGER := 2); --data bus width
PORT(
clock : IN STD_LOGIC; --system clock
reset_n : IN STD_LOGIC; --asynchronous reset
enable : IN STD_LOGIC; --initiate transaction
cpol : IN STD_LOGIC; --spi clock polarity
cpha : IN STD_LOGIC; --spi clock phase
cont : IN STD_LOGIC; --continuous mode command
clk_div : IN INTEGER; --system clock cycles per 1/2 period of sclk
addr : IN INTEGER; --address of slave
tx_data : IN STD_LOGIC_VECTOR(d_width-1 DOWNTO 0); --data to transmit
miso : IN STD_LOGIC; --master in, slave out
sclk : BUFFER STD_LOGIC; --spi clock
ss_n : BUFFER STD_LOGIC_VECTOR(slaves-1 DOWNTO 0); --slave select
mosi : OUT STD_LOGIC; --master out, slave in
busy : OUT STD_LOGIC; --busy / data ready signal
rx_data : OUT STD_LOGIC_VECTOR(d_width-1 DOWNTO 0)); --data received
END component;
component pokey IS
PORT
(
CLK : IN STD_LOGIC;
--ENABLE_179 :in std_logic;
CPU_MEMORY_READY :in std_logic;
ANTIC_MEMORY_READY :in std_logic;
ADDR : IN STD_LOGIC_VECTOR(3 DOWNTO 0);
DATA_IN : IN STD_LOGIC_VECTOR(7 DOWNTO 0);
WR_EN : IN STD_LOGIC;
RESET_N : IN STD_LOGIC;
-- keyboard interface
keyboard_scan : out std_logic_vector(5 downto 0);
keyboard_response : in std_logic_vector(1 downto 0);
-- pots - go high as capacitor charges
POT_IN : in std_logic_vector(7 downto 0);
-- sio interface
SIO_IN1 : IN std_logic;
SIO_IN2 : IN std_logic;
SIO_IN3 : IN std_logic;
DATA_OUT : OUT STD_LOGIC_VECTOR(7 DOWNTO 0);
CHANNEL_0_OUT : OUT STD_LOGIC_VECTOR(3 downto 0);
CHANNEL_1_OUT : OUT STD_LOGIC_VECTOR(3 downto 0);
CHANNEL_2_OUT : OUT STD_LOGIC_VECTOR(3 downto 0);
CHANNEL_3_OUT : OUT STD_LOGIC_VECTOR(3 downto 0);
IRQ_N_OUT : OUT std_logic;
SIO_OUT1 : OUT std_logic;
SIO_OUT2 : OUT std_logic;
SIO_OUT3 : OUT std_logic;
SIO_CLOCK : INOUT std_logic; -- TODO, should not use internally
POT_RESET : out std_logic
);
END component;
function vectorize(s: std_logic) return std_logic_vector is
variable v: std_logic_vector(0 downto 0);
begin
v(0) := s;
return v;
end;
signal addr_decoded : std_logic_vector(15 downto 0);
signal config_6502_next : std_logic_vector(7 downto 0);
signal config_6502_reg : std_logic_vector(7 downto 0);
signal ram_select_next : std_logic_vector(1 downto 0);
signal ram_select_reg : std_logic_vector(1 downto 0);
signal rom_select_next : std_logic_vector(1 downto 0);
signal rom_select_reg : std_logic_vector(1 downto 0);
signal gpio_enable_next : std_logic;
signal gpio_enable_reg : std_logic;
signal pause_next : std_logic_vector(31 downto 0);
signal pause_reg : std_logic_vector(31 downto 0);
signal paused_next : std_logic;
signal paused_reg : std_logic;
signal ledg_next : std_logic_vector(7 downto 0);
signal ledg_reg : std_logic_vector(7 downto 0);
signal ledr_next : std_logic_vector(9 downto 0);
signal ledr_reg : std_logic_vector(9 downto 0);
signal reset_n_next : std_logic;
signal reset_n_reg : std_logic;
signal reset_6502_cpu_next : std_logic;
signal reset_6502_cpu_reg : std_logic;
signal reset_zpu_next : std_logic;
signal reset_zpu_reg : std_logic;
signal spi_miso : std_logic;
signal spi_mosi : std_logic;
signal spi_busy : std_logic;
signal spi_enable : std_logic;
signal spi_chip_select : std_logic_vector(0 downto 0);
signal spi_clk_out : std_logic;
signal spi_tx_data : std_logic_vector(7 downto 0);
signal spi_rx_data : std_logic_vector(7 downto 0);
signal spi_addr_next : std_logic;
signal spi_addr_reg : std_logic;
signal spi_speed_next : std_logic_vector(7 downto 0);
signal spi_speed_reg : std_logic_vector(7 downto 0);
signal zpu_hex_next : std_logic_vector(15 downto 0);
signal zpu_hex_reg : std_logic_vector(15 downto 0);
signal pokey_data_out : std_logic_vector(7 downto 0);
begin
-- register
process(clk,pll_locked)
begin
if (clk'event and clk='1') then
if (pll_locked = '0') then
config_6502_reg <= "1"&"0"&"011111"; -- reset_6502, halt_6502, run_every 32 cycles
rom_select_reg <= "01";
ram_select_reg <= "10";
gpio_enable_reg <= '0';
pause_reg <= (others=>'0');
paused_reg <= '0';
ledg_reg <= (others=>'0');
ledr_reg <= (others=>'0');
spi_addr_reg <= '1';
spi_speed_reg <= X"80";
zpu_hex_reg <= X"b007";
reset_n_reg <= '0';
reset_zpu_reg <= '1';
reset_6502_cpu_reg <= '1';
else
config_6502_reg <= config_6502_next;
rom_select_reg <= rom_select_next;
ram_select_reg <= ram_select_next;
gpio_enable_reg <= gpio_enable_next;
pause_reg <= pause_next;
paused_reg <= paused_next;
ledg_reg <= ledg_next;
ledr_reg <= ledr_next;
spi_addr_reg <= spi_addr_next;
spi_speed_reg <= spi_speed_next;
zpu_hex_reg <= zpu_hex_next;
reset_n_reg <= reset_n_next;
reset_zpu_reg <= reset_zpu_next;
reset_6502_cpu_reg <= reset_6502_cpu_next;
end if;
end if;
end process;
-- decode address
decode_addr1 : complete_address_decoder
generic map(width=>4)
port map (addr_in=>addr(3 downto 0), addr_decoded=>addr_decoded);
-- spi - for sd card access without bit banging...
-- 200KHz to start with - probably fine for 8-bit, can up it later after init
spi_master1 : spi_master
generic map(slaves=>1,d_width=>8)
port map (clock=>clk,reset_n=>pll_locked,enable=>spi_enable,cpol=>'0',cpha=>'0',cont=>'0',clk_div=>to_integer(unsigned(spi_speed_reg)),addr=>to_integer(unsigned(vectorize(spi_addr_reg))),
tx_data=>spi_tx_data, miso=>spi_miso,sclk=>spi_clk_out,ss_n=>spi_chip_select,mosi=>spi_mosi,
rx_data=>spi_rx_data,busy=>spi_busy);
-- spi-programming model:
-- reg for write/read
-- data (send/receive)
-- busy
-- speed - 0=400KHz, 1=10MHz? Start with 400KHz then atari800core...
-- chip select
-- uart - another Pokey! Running at atari frequency.
uart1 : pokey
port map (clk=>clk,CPU_MEMORY_READY=>enable_179,ANTIC_MEMORY_READY=>enable_179,addr=>addr(3 downto 0),data_in=>cpu_data_in(7 downto 0),wr_en=>addr(4) and wr_en,
reset_n=>pll_locked,keyboard_response=>"11",pot_in=>X"00",
sio_in1=>sio_data_out,sio_in2=>'1',sio_in3=>'1', -- TODO, pokey dir...
data_out=>pokey_data_out,
sio_out1=>sio_data_in);
-- hardware regs for ZPU
--
-- KEYS -> all for ZPU. SWITCHES -> all for ZPU
-- i.e. zpu must control: rom/ram select, turbo, 6502 reset, scandoubler, rom wait states, pal/ntsc, gpio enable, sdram vs sram
-- these need storing somewhere...
-- TODO - volume output from here
-- TODO - hex digits register
-- TODO - if we take over antic we need to point antic to alternative RAM!
-- TODO - if we take over antic we need to point it back at the original display list... e.g. freeze, store state, restore state...
-- TODO - reset pokey and pia interrupts too?
--
-- virtual joystick button -> keyboard (windows key?)
-- reset -> keyboard -> f12 -> zpu reset. Then zpu controls 6502 reset.
--
-- important todo -> speed up clearing ram. e.g. 32-bit sram write. Only clear bit we need to.
--
-- STEP 1 -> joystick -> keyboard (DONE)
-- STEP 2 -> hardcode switch inputs to 65XE, PAL, non scandoubled (DONE)
-- STEP 3 -> 6502 reset (DONE))/turbo under zpu control (DONE)
-- STEP 4 -> zpu starts 6502 on key1 (DONE)
-- STEP 5 -> simple OSD! ok, just make antic display mode 2 on reset with hello world, joystick to select... (CLOSE)
--
-- CONFIG_ATARI:
-- R/W: 0-5: run every n cycles (0-63), 6: pause, 7: reset
-- R/W(8-11 bits) - XX 00=64k,01=128K,10=320K Compy,11=320K Rambo
-- R/W(12-15 bits) - XX 00=XL, 01=XL turbo, 10=OS B/debugger, 11=OS B turbo
-- R/W(16-20 bits) - XXXG= G:0=GPIO_OFF,1=GPIO_ON(ISH!)
-- PAUSE (DONE) -- W: 0-31:wait for n cycles
-- SWITCH (DONE)
-- R: 0-9 - switches
-- KEY (DONE)
-- R: 0-3 - keys
-- LEDG (DONE)
-- R/W: 0-9
-- LEDR (DONE)
-- R/W: 0-9
-- SPI_DATA (DONE)
-- W - write data (starts transmission)
-- R - read data (wait for complete first)
-- SPI_STATE/SPI_CTRL (DONE)
-- R: 0=busy
-- W: 0=select_n, speed
-- SIO
-- R: 0=CMD
-- FPGA board (DONE)
-- R(32 bits) 0=DE1
-- HEX digits
-- W(16 bits)
-- TODO, ROM select, RAM select etc etc
-- TODO firmware with OSD!
-- Writes to registers
process(cpu_data_in,wr_en,addr,addr_decoded, ledg_reg, ledr_reg, pause_reg, config_6502_reg, rom_select_reg, ram_select_reg, gpio_enable_reg, spi_speed_reg, spi_addr_reg, zpu_hex_reg)
begin
config_6502_next <= config_6502_reg;
rom_select_next <= rom_select_reg;
ram_select_next <= ram_select_reg;
gpio_enable_next <= gpio_enable_reg;
pause_next <= pause_reg;
ledg_next <= ledg_reg;
ledr_next <= ledr_reg;
spi_speed_next <= spi_speed_reg;
spi_addr_next <= spi_addr_reg;
spi_tx_data <= (others=>'0');
spi_enable <= '0';
zpu_hex_next <= zpu_hex_reg;
paused_next <= '0';
if (not(pause_reg = X"00000000")) then
pause_next <= std_LOGIC_VECTOR(unsigned(pause_reg)-to_unsigned(1,32));
paused_next <= '1';
end if;
if (wr_en = '1' and addr(4) = '0') then
if(addr_decoded(0) = '1') then
config_6502_next <= cpu_data_in(7 downto 0);
ram_select_next <= cpu_DATA_IN(9 downto 8);
rom_select_next <= cpu_DATA_IN(13 downto 12);
gpio_enable_next <= cpu_DATA_IN(16);
end if;
if(addr_decoded(1) = '1') then
pause_next <= cpu_data_in;
paused_next <= '1';
end if;
if(addr_decoded(4) = '1') then
ledg_next <= cpu_data_in(7 downto 0);
end if;
if(addr_decoded(5) = '1') then
ledr_next <= cpu_data_in(9 downto 0);
end if;
if(addr_decoded(6) = '1') then
-- TODO, check overrun?
spi_tx_data <= cpu_data_in(7 downto 0);
spi_enable <= '1';
end if;
if(addr_decoded(7) = '1') then
spi_addr_next <= cpu_data_in(0);
if (cpu_data_in(1) = '1') then
spi_speed_next <= X"80"; -- slow, for init
else
spi_speed_next <= X"04"; -- turbo!
end if;
end if;
if(addr_decoded(10) = '1') then
zpu_hex_next <= cpu_data_in(15 downto 0);
end if;
end if;
end process;
-- Read from registers
process(addr,addr_decoded, ledg_reg, ledr_reg, SWITCH, KEY, SIO_COMMAND_OUT, spi_rx_data, spi_busy, pokey_data_out, zpu_hex_reg, config_6502_reg, ram_select_reg, rom_select_reg, gpio_enable_reg)
begin
data_out <= (others=>'0');
if (addr(4) = '0') then
if (addr_decoded(0) = '1') then
data_out(7 downto 0) <= config_6502_reg;
data_out(9 downto 8) <= ram_select_reg;
data_out(13 downto 12) <= rom_select_reg;
data_out(16) <= gpio_enable_reg;
end if;
if (addr_decoded(2) = '1') then
data_out(9 downto 0) <= (others=>'0'); -- TODO - enable SD.
end if;
if (addr_decoded(3) = '1') then
data_out(3 downto 0) <= key;
end if;
if (addr_decoded(4) = '1') then
data_out(7 downto 0) <= ledg_reg;
end if;
if (addr_decoded(5) = '1') then
data_out(9 downto 0) <= ledr_reg;
end if;
if (addr_decoded(6) = '1') then
data_out(7 downto 0) <= spi_rx_data;
end if;
if (addr_decoded(7) = '1') then
data_out(0) <= spi_busy;
end if;
if(addr_decoded(8) = '1') then
data_out(0) <= sio_command_OUT;
end if;
if (addr_decoded(9) = '1') then
--data_out <= X"00000000"; -- DE1!
--data_out <= X"00000001"; -- DE2!
--data_out <= X"00000002"; -- SOCKIT!
--data_out <= X"00000003"; -- REPLAY!
data_out <= X"00000004"; -- MMC!
end if;
if (addr_decoded(10) = '1') then
data_out(15 downto 0) <= zpu_hex_reg;
end if;
else
data_out(7 downto 0) <= pokey_data_out;
end if;
end process;
process(request_reset_zpu, config_6502_next, config_6502_reg)
begin
reset_n_next <= '1';
reset_zpu_next <= '0';
reset_6502_cpu_next <= config_6502_reg(7);
if (request_reset_zpu = '1') then
reset_n_next <= '0';
reset_zpu_next <= '1';
reset_6502_cpu_next <= '1';
end if;
end process;
-- outputs
PAUSE_ZPU <= paused_reg;
LEDG <= ledg_reg;
LEDR <= ledr_reg;
SDCARD_CLK <= spi_clk_out;
SDCARD_CMD <= spi_mosi;
spi_miso <= SDCARD_DAT; -- INPUT!! XXX
SDCARD_DAT3 <= spi_chip_select(0);
PAL <= '1'; -- TODO
USE_SDRAM <= '1'; -- should not be all or nothing. can mix for higher ram settings...
RAM_SELECT <= ram_select_reg;
VGA <= '1';
COMPOSITE_ON_HSYNC <= '0';
GPIO_ENABLE <= '0'; -- enable gpio - FIXME - esp carts!
ROM_SELECT <= rom_select_reg;
reset_n <= reset_n_reg; -- system reset or pll not locked
reset_zpu <= reset_zpu_reg; -- system_reset or pll not locked
reset_6502 <= reset_6502_cpu_reg; -- zpu software controlled
pause_6502 <= config_6502_reg(6); -- zpu software controlled
throttle_count_6502 <= config_6502_reg(5 downto 0); -- zpu software controlled
zpu_hex <= zpu_hex_reg;
end vhdl;
mcc216/pokey_ps2_decoder.vhdl
---------------------------------------------------------------------------
-- (c) 2013 mark watson
-- I am happy for anyone to use this for non-commercial use.
-- If my vhdl files are used commercially or otherwise sold,
-- please contact me for explicit permission at scrameta (gmail).
-- This applies for source and binary form and derived works.
---------------------------------------------------------------------------
LIBRARY ieee;
USE ieee.std_logic_1164.all;
use ieee.numeric_std.all;
ENTITY pokey_ps2_decoder IS
PORT
(
CLK : IN STD_LOGIC;
RESET_N : std_logic;
-- ENABLE : IN STD_LOGIC; TODO Pokey debounce and scanning can be disabled
-- ps2 keyboard input
KEY_EVENT : IN STD_LOGIC;
KEY_CODE : IN STD_LOGIC_VECTOR(7 downto 0);
KEY_EXTENDED : IN STD_LOGIC;
KEY_UP : IN STD_LOGIC;
-- pokey output
KBCODE : OUT STD_LOGIC_VECTOR(7 downto 0);
KEY_HELD : OUT STD_LOGIC;
SHIFT_PRESSED : OUT STD_LOGIC;
BREAK_PRESSED : OUT STD_LOGIC;
KEY_INTERRUPT : OUT STD_LOGIC;
-- other output
CONSOL_START : OUT STD_LOGIC;
CONSOL_SELECT : OUT STD_LOGIC;
CONSOL_OPTION : OUT STD_LOGIC;
VIRTUAL_STICKS : out std_logic_vector(7 downto 0);
VIRTUAL_TRIGGER : out std_logic_vector(3 downto 0);
SYSTEM_RESET : out std_logic;
VIRTUAL_KEYS : out std_logic_vector(3 downto 0)
);
END pokey_ps2_decoder;
ARCHITECTURE vhdl OF pokey_ps2_decoder IS
signal left_shift_pressed_reg : std_logic;
signal left_shift_pressed_next : std_logic;
signal right_shift_pressed_reg : std_logic;
signal right_shift_pressed_next : std_logic;
signal left_control_pressed_reg : std_logic;
signal left_control_pressed_next : std_logic;
signal right_control_pressed_reg : std_logic;
signal right_control_pressed_next : std_logic;
signal kbcode_next : std_logic_vector(7 downto 0);
signal kbcode_reg : std_logic_vector(7 downto 0); -- XXX remove unused upper bits
signal interrupt_next : std_logic;
signal interrupt_reg : std_logic;
signal break_next : std_logic;
signal break_reg : std_logic;
signal key_held_next : std_logic;
signal key_held_reg : std_logic;
signal start_next : std_logic;
signal start_reg : std_logic;
signal select_next : std_logic;
signal select_reg : std_logic;
signal option_next : std_logic;
signal option_reg : std_logic;
signal virtual_up_next : std_logic;
signal virtual_up_reg : std_logic;
signal virtual_down_next : std_logic;
signal virtual_down_reg : std_logic;
signal virtual_left_next : std_logic;
signal virtual_left_reg : std_logic;
signal virtual_right_next : std_logic;
signal virtual_right_reg : std_logic;
signal virtual_stick_pressed_next : std_logic;
signal virtual_stick_pressed_reg : std_logic;
signal system_reset_next : std_logic;
signal system_reset_reg : std_logic;
signal virtual_keys_next : std_logic_vector(3 downto 0);
signal virtual_keys_reg : std_logic_vector(3 downto 0);
signal no_kbcode_update : std_logic;
BEGIN
-- register
process(clk,reset_n)
begin
if (reset_n = '0') then
left_shift_pressed_reg <= '0';
right_shift_pressed_reg <= '0';
left_control_pressed_reg <= '0';
right_control_pressed_reg <= '0';
kbcode_reg <= X"3F";
interrupt_reg <= '0';
break_reg <= '0';
key_held_reg <= '0';
start_reg <= '0';
select_reg <= '0';
option_reg <= '0';
virtual_up_reg <= '0';
virtual_down_reg <= '0';
virtual_left_reg <= '0';
virtual_right_reg <= '0';
virtual_stick_pressed_reg <= '0';
system_reset_reg <= '0';
virtual_keys_reg <= (others=>'0');
elsif (clk'event and clk='1') then
left_shift_pressed_reg <= left_shift_pressed_next;
right_shift_pressed_reg <= right_shift_pressed_next;
left_control_pressed_reg <= left_control_pressed_next;
right_control_pressed_reg <= right_control_pressed_next;
kbcode_reg <= kbcode_next;
interrupt_reg <= interrupt_next;
break_reg <= break_next;
key_held_reg <= key_held_next;
start_reg <= start_next;
select_reg <= select_next;
option_reg <= option_next;
virtual_up_reg <= virtual_up_next;
virtual_down_reg <= virtual_down_next;
virtual_left_reg <= virtual_left_next;
virtual_right_reg <= virtual_right_next;
virtual_stick_pressed_reg <= virtual_stick_pressed_next;
system_reset_reg <= system_reset_next;
virtual_keys_reg <= virtual_keys_next;
end if;
end process;
-- update key pressed
process(key_event, key_up, key_code, key_extended, left_shift_pressed_reg, right_shift_pressed_reg, left_control_pressed_reg, right_control_pressed_reg, kbcode_reg, break_reg, start_reg, select_reg, option_reg, key_held_reg, no_kbcode_update, virtual_up_reg, virtual_down_reg, virtual_left_reg, virtual_right_reg, virtual_stick_pressed_reg, system_reset_reg, virtual_keys_reg)
begin
left_shift_pressed_next <= left_shift_pressed_reg;
right_shift_pressed_next <= right_shift_pressed_reg;
left_control_pressed_next <= left_control_pressed_reg;
right_control_pressed_next <= right_control_pressed_reg;
kbcode_next <= kbcode_reg;
interrupt_next <= '0';
break_next <= break_reg;
start_next <= start_reg;
select_next <= select_reg;
option_next <= option_reg;
virtual_up_next <= virtual_up_reg;
virtual_down_next <= virtual_down_reg;
virtual_left_next <= virtual_left_reg;
virtual_right_next <= virtual_right_reg;
virtual_stick_pressed_next <= virtual_stick_pressed_reg;
system_reset_next <= system_reset_reg;
virtual_keys_next <= virtual_keys_reg;
key_held_next <= key_held_reg;
no_kbcode_update <= '0';
-- Core functionality exactly as the Atari layout
if (key_event = '1') then
interrupt_next <= not(key_up);
key_held_next <= not(key_up);
case key_extended&key_code is
-- Basic mapping - should allow all keys on Atari, just fiddly
when
'0'&X"AA"|'1'&X"AA"| -- BAT SUCCESSFUL
'0'&X"FC"|'1'&X"FC" -- BAT FAIL
=>
no_kbcode_update <= '1';
interrupt_next <= '0';
key_held_next <= '0';
when '0'&X"4B" => --L
kbcode_next <= X"00";
when '0'&X"3B" => --J
kbcode_next <= X"01";
when '0'&X"4C" => --;
kbcode_next <= X"02";
when '0'&X"42" => --K
kbcode_next <= X"05";
when '0'&X"79" => --+
kbcode_next <= X"06";
when '0'&X"7C" => --*
kbcode_next <= X"07";
when '0'&X"44" => --O
kbcode_next <= X"08";
when '0'&X"4D" => --P
kbcode_next <= X"0A";
when '0'&X"3C" => --U
kbcode_next <= X"0B";
when '0'&X"5A" => --Enter
kbcode_next <= X"0C";
when '0'&X"43" => --I
kbcode_next <= X"0D";
when '0'&X"4E" => -- -
kbcode_next <= X"0E";
when '0'&X"55" => -- =
kbcode_next <= X"0F";
when '0'&X"2A" => --V
kbcode_next <= X"10";
when '0'&X"05" => --Help (Using F1)
kbcode_next <= X"11";
when '0'&X"21" => --C
kbcode_next <= X"12";
when '0'&X"32" => --B
kbcode_next <= X"15";
when '0'&X"22" => --X
kbcode_next <= X"16";
when '0'&X"1A" => --Z
kbcode_next <= X"17";
when '0'&X"25" => --4
kbcode_next <= X"18";
when '0'&X"26" => --3
kbcode_next <= X"1A";
when '0'&X"36" => --6
kbcode_next <= X"1B";
when '0'&X"76" => --Esc
kbcode_next <= X"1C";
when '0'&X"2E" => --5
kbcode_next <= X"1D";
when '0'&X"1E" => --2
kbcode_next <= X"1E";
when '0'&X"16" => --1
kbcode_next <= X"1F";
when '0'&X"41" => --,
kbcode_next <= X"20";
when '0'&X"29" => --Spc
kbcode_next <= X"21";
when '0'&X"49" => --.
kbcode_next <= X"22";
when '0'&X"31" => --N
kbcode_next <= X"23";
when '0'&X"3A" => --M
kbcode_next <= X"25";
when '0'&X"4A" => --/
kbcode_next <= X"26";
when '1'&X"11" => --Inv
kbcode_next <= X"27";
when '0'&X"2D" => --R
kbcode_next <= X"28";
when '0'&X"24" => --E
kbcode_next <= X"2A";
when '0'&X"35" => --Y
kbcode_next <= X"2B";
when '0'&X"0D" => --Tab
kbcode_next <= X"2C";
when '0'&X"2C" => --T
kbcode_next <= X"2D";
when '0'&X"1D" => --W
kbcode_next <= X"2E";
when '0'&X"15" => --Q
kbcode_next <= X"2F";
when '0'&X"46" => --9
kbcode_next <= X"30";
when '0'&X"45" => --0
kbcode_next <= X"32";
when '0'&X"3D" => --7
kbcode_next <= X"33";
when '0'&X"66" => --Backspace
kbcode_next <= X"34";
when '0'&X"3E" => --8
kbcode_next <= X"35";
when '0'&X"54" => --< (using [)
kbcode_next <= X"36";
when '0'&X"5B" => --> (using ])
kbcode_next <= X"37";
when '0'&X"2B" => --F
kbcode_next <= X"38";
when '0'&X"33" => --H
kbcode_next <= X"39";
when '0'&X"23" => --D
kbcode_next <= X"3A";
when '0'&X"58" => --Caps
kbcode_next <= X"3C";
when '0'&X"34" => --G
kbcode_next <= X"3D";
when '0'&X"1B" => --S
kbcode_next <= X"3E";
when '0'&X"1C" => --A
kbcode_next <= X"3F";
when '0'&X"77" => --Break - XXX BUG, also presses 14, since E1 ext code...
no_kbcode_update <= '1';
break_next <= not(key_up);
key_held_next <= '0';
when '1'&X"77" => --Break
no_kbcode_update <= '1';
break_next <= not(key_up);
key_held_next <= '0';
-- XXX BUGS
-- i) press shift when already holding key - does not update kbcode
-- ii) press key, then press another, then release second key. Should go back to first...
when '0'&X"12" => --Left shift
no_kbcode_update <= '1';
left_shift_pressed_next <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when '0'&X"59" => --Right shift
no_kbcode_update <= '1';
right_shift_pressed_next <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when '0'&X"14" => --Left control
no_kbcode_update <= '1';
left_control_pressed_next <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when '1'&X"14" => --Right control
no_kbcode_update <= '1';
right_control_pressed_next <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when '0'&X"06" => --Start (F2)
no_kbcode_update <= '1';
start_next <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when '0'&X"04" => --Select (F3)
no_kbcode_update <= '1';
select_next <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when '0'&X"0C" => --Option (F4)
no_kbcode_update <= '1';
option_next <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
-- TODO will also be useful to cursor control...
when '1'&X"75" => -- up
no_kbcode_update <= '1';
virtual_up_next <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when '1'&X"72" => -- down
no_kbcode_update <= '1';
virtual_down_next <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when '1'&X"6b" => -- left
no_kbcode_update <= '1';
virtual_left_next <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when '1'&X"74" => -- right
no_kbcode_update <= '1';
virtual_right_next <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when '1'&X"27" => -- right windows key -> fire button
no_kbcode_update <= '1';
virtual_stick_pressed_next <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when '0'&X"0a" => -- f8 => system reset
no_kbcode_update <= '1';
virtual_keys_next(0) <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when '0'&X"01" => -- f9 => system reset
no_kbcode_update <= '1';
virtual_keys_next(1) <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when '0'&X"09" => -- f10 => system reset
no_kbcode_update <= '1';
virtual_keys_next(2) <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when '0'&X"78" => -- f11 => system reset
no_kbcode_update <= '1';
virtual_keys_next(3) <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when '0'&X"07" => -- f12 => system reset
no_kbcode_update <= '1';
system_reset_next <= not(key_UP);
interrupt_next <= '0';
key_held_next <= '0';
when others =>
no_kbcode_update <= '1';
-- nop
-- Idea: Use Windows key and Alt for atari shift/control. Then use keyboard ones for 'nice' mapping as displayed on keyboard?
end case;
if (key_up = '1' or no_kbcode_update = '1') then
kbcode_next <= kbcode_reg;
else
kbcode_next(7 downto 6) <= (left_control_pressed_reg or right_control_pressed_reg)&(left_shift_pressed_reg or right_shift_pressed_reg);
end if;
end if;
-- Then override a few for convenience
-- e.g. if we press '#' on the keyboard we want to see '#' on the atari, even though on the atari its shift a different key.
--http://atariwiki.de/wiki/Wiki.jsp?page=KBCODE
-- $00 $01 $02 $03 $04 $05 $06 $07 $08 $09 $0A $0B $0C $0D $0E $0F
-- $00 L J ; F1 F2 K + * O P U CR I - =
-- $10 V Help C F3 F4 B X Z 4 3 6 Esc 5 2 1
-- $20 , Spc . N M / Inv R E Y Tab T W Q
-- $30 9 0 7 BS 8 < > F H D Caps G S A
--together with Shift Key: add +$40
--together with Control key: add +$80
-- Would be great to have option of using real Atari keyboard, but probably not worthwhile yet.
end process;
-- output
kbcode <= kbcode_reg;
KEY_HELD <= key_held_reg;
shift_pressed <= left_shift_pressed_reg or right_shift_pressed_reg;
break_pressed <= break_reg;
key_interrupt <= interrupt_reg;
consol_start <= start_reg;
consol_select <= select_reg;
consol_option <= option_reg;
VIRTUAL_STICKS <= not(virtual_right_reg&virtual_left_reg&virtual_down_reg&virtual_up_reg&virtual_right_reg&virtual_left_reg&virtual_down_reg&virtual_up_reg);
VIRTUAL_TRIGGER <= "00"&not(virtual_stick_pressed_reg)&not(virtual_stick_pressed_reg);
system_reset <= system_reset_reg;
virtual_keys <= virtual_keys_reg;
END vhdl;

Also available in: Unified diff