Skip to content

Commit

Permalink
Fix UART bug (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
Atybot authored Jun 11, 2021
1 parent 8eb8dd9 commit 447897d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpu.js
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ CPU.prototype.init = function(settings, device_bus)
}
if(settings.uart3)
{
this.devices.uart3 = new UART(this, 0x3E8, device_bus);
this.devices.uart3 = new UART(this, 0x2E8, device_bus);
}

this.devices.fdc = new FloppyController(this, settings.fda, settings.fdb);
Expand Down

0 comments on commit 447897d

Please sign in to comment.