[Armadeus-commitlog] SF.net SVN: armadeus: [629] trunk/firmware/PS2
Brought to you by:
sszy
|
From: <th...@us...> - 2007-08-30 13:59:50
|
Revision: 629
http://armadeus.svn.sourceforge.net/armadeus/?rev=629&view=rev
Author: thom25
Date: 2007-08-30 06:59:53 -0700 (Thu, 30 Aug 2007)
Log Message:
-----------
fix bug 1768755
PS2 IP only compatible with old APD board
Modified Paths:
--------------
trunk/firmware/PS2/PS2.ise
trunk/firmware/PS2/PS2_top.vhd
trunk/firmware/PS2/ps2_top.bit
Modified: trunk/firmware/PS2/PS2.ise
===================================================================
(Binary files differ)
Modified: trunk/firmware/PS2/PS2_top.vhd
===================================================================
--- trunk/firmware/PS2/PS2_top.vhd 2007-08-30 13:35:41 UTC (rev 628)
+++ trunk/firmware/PS2/PS2_top.vhd 2007-08-30 13:59:53 UTC (rev 629)
@@ -105,9 +105,9 @@
elsif ClkxCI'event and ClkxCI = '1' then -- rising clock edge
if CSxBI = '0' and WRxBI = '0' then
case AddrxDI is
- when "0000000000010" =>
+ when "0000000000100" =>
reg1 <= DataxD(7 downto 0);
- when "0000000000011" =>
+ when "0000000000110" =>
reg2 <= DataxD(7 downto 0);
when others => null;
end case;
@@ -158,12 +158,12 @@
if readAccessPulse = '0' then
readAccessPulseFiFo <= '0';
end if;
- when "0000000000010" =>
+ when "0000000000100" =>
DataOutRAMxD <= "00000000" & reg1;
- when "0000000000011" =>
+ when "0000000000110" =>
DataOutRAMxD <= "00000000" & reg2;
- when "0000000000100" =>
+ when "0000000001000" =>
DataOutRAMxD <= "0001001000110100";
when others =>
DataOutRAMxD <= (others => '0');
Modified: trunk/firmware/PS2/ps2_top.bit
===================================================================
(Binary files differ)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|