Skip to content

Commit

Permalink
Fix save data not being saved
Browse files Browse the repository at this point in the history
  • Loading branch information
budude2 committed Jul 26, 2024
1 parent 38c082e commit aca79c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/core_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ data_loader #(
.write_data ( ioctl_dout )
);

logic bk_wr, bk_rtc_wr, loading_done;
logic bk_wr, bk_rd, bk_rtc_wr, loading_done;
logic [16:0] bk_addr;
logic [15:0] bk_data, bk_q;
logic [31:0] save_rd_data, loaded_save_size;
Expand Down Expand Up @@ -778,6 +778,7 @@ cart_top cart
.isSGB_game ( isSGB_game ),

.ioctl_download ( ioctl_download ),
.ioctl_upload ( ioctl_upload ),
.ioctl_wr ( ioctl_wr ),
.ioctl_addr ( ioctl_addr ),
.ioctl_dout ( ioctl_dout ),
Expand Down

0 comments on commit aca79c1

Please sign in to comment.