git.joshuawise.com
/
firearm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Add testbench
[firearm.git]
/
Execute.v
1
module Execute(
2
input clk,
3
input Nrst, /* XXX not used yet */
4
5
input stall,
6
input flush,
7
8
input inbubble,
9
input [31:0] pc,
10
input [31:0] insn,
11
input [31:0] cpsr,
12
input reg [31:0] op0,
13
input reg [31:0] op1,
14
input reg [31:0] op2,
15
input reg carry,
16
17
output reg outstall = 0,
18
output reg outbubble = 1,
19
);
20
21
22
23
endmodule
This page took
0.016861 seconds
and
4
git commands to generate.