Skip to content

Commit dc72aca

Browse files
committed
range
1 parent 6346698 commit dc72aca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/devices/cpu/mpk1839/kl1839vm1.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ void kl1839vm1_device::mb(u32 op)
345345

346346
u32 kob_data = kop2 ? R(x) : R(y);
347347

348-
if (m_pcm_queue_size >= 0)
348+
if (m_pcm_queue_size > 0)
349349
{
350350
if (py)
351351
y = vax_pcm_pull();
@@ -383,7 +383,7 @@ void kl1839vm1_device::mc(u32 op)
383383
const bool py = BIT(op, 2);
384384
const bool px = BIT(op, 1);
385385

386-
if (m_pcm_queue_size >= 0)
386+
if (m_pcm_queue_size > 0)
387387
{
388388
if (py)
389389
y = vax_pcm_pull();
@@ -661,7 +661,7 @@ void kl1839vm1_device::decode_op(u32 op)
661661

662662
void kl1839vm1_device::vax_decode_pc()
663663
{
664-
if (m_pcm_queue_size >= 0)
664+
if (m_pcm_queue_size > 0)
665665
{
666666
LOGVAX("Unused decoded data\n");
667667
}

0 commit comments

Comments
 (0)