Skip to content

Commit

Permalink
add linker
Browse files Browse the repository at this point in the history
  • Loading branch information
davideschiavone committed Sep 26, 2024
1 parent d13a3f5 commit a6b37da
Show file tree
Hide file tree
Showing 14 changed files with 318 additions and 161 deletions.
10 changes: 5 additions & 5 deletions hw/core-v-mini-mcu/include/obi_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
package obi_pkg;

typedef struct packed {
logic req;
logic we;
logic [3:0] be;
logic req;
logic we;
logic [3:0] be;
logic [31:0] addr;
logic [31:0] wdata;
} obi_req_t;

typedef struct packed {
logic gnt;
logic rvalid;
logic gnt;
logic rvalid;
logic [31:0] rdata;
} obi_resp_t;

Expand Down
10 changes: 5 additions & 5 deletions hw/core-v-mini-mcu/include/reg_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
package reg_pkg;

typedef struct packed {
logic valid;
logic write;
logic [3:0] wstrb;
logic valid;
logic write;
logic [3:0] wstrb;
logic [31:0] addr;
logic [31:0] wdata;
} reg_req_t;

typedef struct packed {
logic error;
logic ready;
logic error;
logic ready;
logic [31:0] rdata;
} reg_rsp_t;

Expand Down
Loading

0 comments on commit a6b37da

Please sign in to comment.