Skip to content

Commit

Permalink
Temporary removal of the signal from tandy_snd_rdy
Browse files Browse the repository at this point in the history
This signal is temporarily removed as it causes the core to hang during BIOS boot.
  • Loading branch information
spark2k06 committed Jul 11, 2022
1 parent 6ce0b05 commit bb071f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions PCXT.sv
Expand Up @@ -628,8 +628,7 @@ end
.jtopl2_snd_e (jtopl2_snd_e),
.adlibhide (adlibhide),
.tandy_video (tandy_mode),
.tandy_snd_e (tandy_snd_e),
.tandy_snd_rdy (tandy_snd_rdy),
.tandy_snd_e (tandy_snd_e),
.ioctl_download (ioctl_download),
.ioctl_index (ioctl_index),
.ioctl_wr (ioctl_wr),
Expand Down Expand Up @@ -687,7 +686,7 @@ end
.CLK(clk_cpu),

.RESET(reset_cpu),
.READY(processor_ready),// && tandy_snd_rdy),
.READY(processor_ready),
.NMI(1'b0),
.INTR(interrupt_to_cpu),

Expand Down
5 changes: 2 additions & 3 deletions rtl/KFPC-XT/HDL/Chipset.sv
Expand Up @@ -80,8 +80,7 @@ module CHIPSET (
input logic adlibhide,
// TANDY
input logic tandy_video,
output logic [7:0] tandy_snd_e,
output logic tandy_snd_rdy,
output logic [7:0] tandy_snd_e,

// IOCTL
input logic ioctl_download,
Expand Down Expand Up @@ -169,7 +168,7 @@ module CHIPSET (
.processor_ready (processor_ready),
.dma_ready (dma_ready),
.dma_wait_n (dma_wait_n),
.io_channel_ready (io_channel_ready & memory_access_ready & tandy_snd_rdy),
.io_channel_ready (io_channel_ready & memory_access_ready),// & tandy_snd_rdy),
.io_read_n (io_read_n),
.io_write_n (io_write_n),
.memory_read_n (memory_read_n),
Expand Down

0 comments on commit bb071f8

Please sign in to comment.