yayacemu/aastructs.sv

12 lines
192 B
Systemverilog
Raw Normal View History

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