summaryrefslogtreecommitdiff
path: root/eater_cpu/eater_alu.sv
diff options
context:
space:
mode:
Diffstat (limited to 'eater_cpu/eater_alu.sv')
-rw-r--r--eater_cpu/eater_alu.sv5
1 files changed, 4 insertions, 1 deletions
diff --git a/eater_cpu/eater_alu.sv b/eater_cpu/eater_alu.sv
index b1ed7ea..d8748a4 100644
--- a/eater_cpu/eater_alu.sv
+++ b/eater_cpu/eater_alu.sv
@@ -2,6 +2,8 @@
`timescale 1us/1us
+`include "eater_types.sv"
+
module eater_alu (
input wire clk_in,
input wire en_output_in,
@@ -11,7 +13,8 @@ module eater_alu (
input wire [7:0] A_in,
input wire [7:0] B_in,
- output wire [7:0] bus_out
+ output wire [7:0] bus_out,
+ output wire AluFlags flags_out
);
wire [7:0] result /* verilator public */;