mirror of
https://github.com/86Box/86Box.git
synced 2025-01-23 09:42:47 -05:00
Default PIT to slow on 286 and 386.
This commit is contained in:
parent
fbbd290c8e
commit
a25a17bc62
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ pit_irq0_timer(int new_out, int old_out)
|
|||
void
|
||||
machine_common_init(UNUSED(const machine_t *model))
|
||||
{
|
||||
uint8_t cpu_requires_fast_pit = is486 || (is8086 && (cpu_s->rspeed >= 8000000));
|
||||
uint8_t cpu_requires_fast_pit = is486 || (!is286 && is8086 && (cpu_s->rspeed >= 8000000));
|
||||
|
||||
/* System devices first. */
|
||||
pic_init();
|
||||
|
|
Loading…
Add table
Reference in a new issue