summaryrefslogtreecommitdiff
path: root/rtl/core/uarch.sv
blob: c5a449ca0827c671fa4441b67630988071bb2ae0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
`ifndef CORE_UARCH_SV
`define CORE_UARCH_SV

// Decodifica como andeq r0, r0, r0
`define NOP 32'd0

typedef enum logic[1:0]
{
	ALU_ADD,
	ALU_AND,
	ALU_ORR,
	ALU_XOR
} alu_op;

`endif