Fix UART bug (#486)

This commit is contained in:
Aty 2021-06-12 00:22:26 +03:00 committed by GitHub
parent 8eb8dd9d9d
commit 447897d91c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -832,7 +832,7 @@ CPU.prototype.init = function(settings, device_bus)
} }
if(settings.uart3) 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); this.devices.fdc = new FloppyController(this, settings.fda, settings.fdb);