Skip to content

Commit d250831

Browse files
change default DSP busy write time to 1000ns (1us). I'm starting to
wonder if certain early demos are having problems keeping single-cycle going because our delay is too long...
1 parent 5ec6c54 commit d250831

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hardware/sblaster.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2312,7 +2312,7 @@ class SBLASTER: public Module_base {
23122312

23132313
si=section->Get_int("dsp write busy delay"); /* in nanoseconds */
23142314
if (si >= 0) sb.dsp.dsp_write_busy_time = si;
2315-
else sb.dsp.dsp_write_busy_time = 15000; /* FIXME: How long is the DSP busy on real hardware? */
2315+
else sb.dsp.dsp_write_busy_time = 1000; /* FIXME: How long is the DSP busy on real hardware? */
23162316

23172317
/* sanity check. Pro and later cards have I/O port arrangements that obviously need
23182318
* I/O ports on odd numbers, and therefore aliasing is impractical. */

0 commit comments

Comments
 (0)