Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
litex
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jonathan Currier
litex
Commits
298c8559
Commit
298c8559
authored
Jan 15, 2021
by
Raptor Engineering Development Team
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes for IRQ support
parent
c6240722
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
18 deletions
+1
-18
litex/soc/cores/cpu/microwatt/xics_wrapper.vhdl
litex/soc/cores/cpu/microwatt/xics_wrapper.vhdl
+1
-18
No files found.
litex/soc/cores/cpu/microwatt/xics_wrapper.vhdl
View file @
298c8559
...
...
@@ -108,7 +108,7 @@ architecture rtl of xics_ics_wrapper is
signal
wishbone_out
:
wb_io_slave_out
;
signal
icp_out
:
ics_to_icp_t
;
signal
int_level_uw
:
std_ulogic_vector
(
25
5
downto
0
);
signal
int_level_uw
:
std_ulogic_vector
(
1
5
downto
0
);
begin
-- wishbone mapping
...
...
@@ -129,7 +129,6 @@ begin
-- Assign external interrupts
interrupts
:
process
(
all
)
begin
int_level_uw
<=
(
others
=>
'0'
);
int_level_uw
(
0
)
<=
int_level_in
(
0
);
int_level_uw
(
1
)
<=
int_level_in
(
1
);
int_level_uw
(
2
)
<=
int_level_in
(
2
);
...
...
@@ -146,22 +145,6 @@ begin
int_level_uw
(
13
)
<=
int_level_in
(
13
);
int_level_uw
(
14
)
<=
int_level_in
(
14
);
int_level_uw
(
15
)
<=
int_level_in
(
15
);
int_level_uw
(
16
)
<=
int_level_in
(
16
);
int_level_uw
(
17
)
<=
int_level_in
(
17
);
int_level_uw
(
18
)
<=
int_level_in
(
18
);
int_level_uw
(
19
)
<=
int_level_in
(
19
);
int_level_uw
(
20
)
<=
int_level_in
(
20
);
int_level_uw
(
21
)
<=
int_level_in
(
21
);
int_level_uw
(
22
)
<=
int_level_in
(
22
);
int_level_uw
(
23
)
<=
int_level_in
(
23
);
int_level_uw
(
24
)
<=
int_level_in
(
24
);
int_level_uw
(
25
)
<=
int_level_in
(
25
);
int_level_uw
(
26
)
<=
int_level_in
(
26
);
int_level_uw
(
27
)
<=
int_level_in
(
27
);
int_level_uw
(
28
)
<=
int_level_in
(
28
);
int_level_uw
(
29
)
<=
int_level_in
(
29
);
int_level_uw
(
30
)
<=
int_level_in
(
30
);
int_level_uw
(
31
)
<=
int_level_in
(
31
);
end
process
;
xics_ics
:
entity
work
.
xics_ics
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment