]> Joshua Wise's Git repositories - firearm.git/blame - Execute.v
Add testbench
[firearm.git] / Execute.v
CommitLineData
5b3daee2
JW
1module 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
23endmodule
This page took 0.023349 seconds and 4 git commands to generate.