From 4fcd67887c7a6a0bd6814eddad35692fda65331e Mon Sep 17 00:00:00 2001 From: Neal Andrew Crook Date: Fri, 29 Jul 2016 23:30:14 +0100 Subject: [PATCH] Oops. Left all three UARTs at the same address. Fixed. --- Kernel/platform-multicomp09/platform.def | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Kernel/platform-multicomp09/platform.def b/Kernel/platform-multicomp09/platform.def index 827944b3..a4e32758 100644 --- a/Kernel/platform-multicomp09/platform.def +++ b/Kernel/platform-multicomp09/platform.def @@ -46,9 +46,9 @@ UARTDAT0 equ $ffd1 UARTSTA0 equ $ffd0 ;;; Port1, tty2: UART registers - additional console -UARTDAT1 equ $ffd1 -UARTSTA1 equ $ffd0 +UARTDAT1 equ $ffd3 +UARTSTA1 equ $ffd2 ;;; Port2, tty3: UART registers - drivewire link to server -UARTDAT2 equ $ffd1 -UARTSTA2 equ $ffd0 +UARTDAT2 equ $ffd5 +UARTSTA2 equ $ffd4 -- 2.34.1