-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
100 changed files
with
17,995 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
impl1 | ||
/.recovery | ||
Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[Runmanager] | ||
Geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\x1\x1c\0\0\0\xd8\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0) | ||
windowState=@ByteArray(\0\0\0\xff\0\0\0\0\xfd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x4\0\0\0\x4\0\0\0\b\0\0\0\b\xfc\0\0\0\x1\0\0\0\0\0\0\0\x1\xff\xff\xff\xff\x3\0\0\0\0\xff\xff\xff\xff\0\0\0\0\0\0\0\0) | ||
headerState=@ByteArray(\0\0\0\xff\0\0\0\0\0\0\0\x1\0\0\0\x1\0\0\0\0\x1\0\0\0\0\0\0\0\0\0\0\0\x16\0\xe0?\0\0\0\t\0\0\0\x10\0\0\0\x64\0\0\0\xf\0\0\0\x64\0\0\0\xe\0\0\0\x64\0\0\0\r\0\0\0\x64\0\0\0\x15\0\0\0\x64\0\0\0\x14\0\0\0\x64\0\0\0\x13\0\0\0\x64\0\0\0\x12\0\0\0\x64\0\0\0\x11\0\0\0\x64\0\0\x4\xd3\0\0\0\x16\x1\x1\0\x1\0\0\0\0\0\0\0\0\0\0\0\0\x64\xff\xff\xff\xff\0\0\0\x81\0\0\0\0\0\0\0\x3\0\0\0#\0\0\0\x1\0\0\0\x2\0\0\x4\xb0\0\0\0\f\0\0\0\0\0\0\0\0\0\0\0\t\0\0\0\0) | ||
|
||
[impl1%3CStrategy1%3E] | ||
isChecked=false | ||
isHidden=false | ||
isExpanded=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
library IEEE; | ||
use IEEE.STD_LOGIC_1164.ALL; | ||
use IEEE.NUMERIC_STD.ALL; | ||
|
||
entity N64_CIC is | ||
port ( | ||
CLK_I : in STD_LOGIC; | ||
REGION_I : in STD_LOGIC; | ||
N64_CIC_DCLK_I : in STD_LOGIC; | ||
N64_CIC_D_IO : inout STD_LOGIC; | ||
N64_CIC_RESET_I : in STD_LOGIC | ||
); | ||
end N64_CIC; | ||
|
||
architecture Behavioral of N64_CIC is | ||
|
||
component lm8_cic | ||
port ( | ||
clk_i : in std_logic | ||
; reset_n : in std_logic | ||
; ioPIO_BOTH_IN : in std_logic_vector(2 downto 0) | ||
; ioPIO_BOTH_OUT : out std_logic_vector(0 downto 0) | ||
); | ||
end component; | ||
|
||
signal cic_in : std_logic_vector(2 downto 0); | ||
signal cic_out : std_logic_vector(0 downto 0); | ||
|
||
begin | ||
|
||
lm8_inst : lm8_cic | ||
port map ( | ||
clk_i => CLK_I | ||
,reset_n => N64_CIC_RESET_I | ||
,ioPIO_BOTH_IN => cic_in | ||
,ioPIO_BOTH_OUT => cic_out | ||
); | ||
cic_in <= REGION_I & N64_CIC_DCLK_I & N64_CIC_D_IO; | ||
|
||
process (cic_out, N64_CIC_RESET_I) | ||
begin | ||
if N64_CIC_RESET_I = '0' then | ||
N64_CIC_D_IO <= 'Z'; | ||
else | ||
if cic_out(0) = '1' then | ||
N64_CIC_D_IO <= '0'; | ||
else | ||
N64_CIC_D_IO <= 'Z'; | ||
end if; | ||
end if; | ||
end process; | ||
|
||
end Behavioral; |
Oops, something went wrong.