1
0
mirror of https://github.com/UzixLS/zx-sizif-xxs.git synced 2025-07-19 07:11:28 +03:00

fix tape out

This commit is contained in:
UzixLS
2021-11-14 21:15:40 +03:00
parent 27d7d5bed7
commit b9d24c353e
3 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@ module zx_ula(
input sd_cd,
input sd_miso_tape_in,
output sd_mosi,
output sd_mosi_tape_out,
output reg sd_sck,
output reg sd_cs
);
@ -409,7 +409,7 @@ divmmc divmmc0(
.ramwr_mask(div_ramwr_mask),
.cpuwait(div_wait)
);
assign sd_mosi = (~sd_cd)? sd_mosi0 : tape_out;
assign sd_mosi_tape_out = (divmmc_en == DIVMMC_OFF)? tape_out : sd_mosi0;
/* ULAPLUS */