add new pic

This commit is contained in:
Nicholas Orlowsky 2024-04-08 01:34:21 -05:00
parent 1f41f702e2
commit 7fdf4e7739
Signed by: nickorlow
GPG key ID: 838827D8C4611687
62 changed files with 9348 additions and 0 deletions

11
aastructs.sv Normal file
View file

@ -0,0 +1,11 @@
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