yayacemu/aastructs.sv

12 lines
185 B
Systemverilog
Raw Normal View History

2024-04-08 06:34:21 +00:00
package structs;
typedef enum {ADD} alu_op;
typedef struct {
logic [7:0] operand_a;
logic [7:0] operand_b;
alu_op op;
} alu_input;
endpackage