From ff29ae65f37294df9870d06128a5988a542d640e Mon Sep 17 00:00:00 2001 From: Thomas Date: Sat, 4 Jul 2020 11:03:09 +0200 Subject: [PATCH] fixes 326 core parameter names --- forth.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/forth.asm b/forth.asm index 702fac5..bc39be3 100644 --- a/forth.asm +++ b/forth.asm @@ -530,7 +530,7 @@ COLD: .endif MOV BG_TIM_PSCR,#3 ; prescaler 1/(2^3) = 1/8 .endif - LDW X,#BG_TIM_REL ; "'BGTIMREL" timer reload for BG task + LDW X,#BG_TIM_REL ; "BGTIMREL" timer reload for BG task LDW BG_TIM_ARRH,X ; timer not yet started - use 16bit transfer MOV BG_TIM_CR1,#0x01 ; enable background timer MOV BG_TIM_IER,#0x01 ; enable background timer interrupt @@ -539,7 +539,7 @@ COLD: .ifne HAS_RXUART+HAS_TXUART ; Init RS232 communication port ; STM8S[01]003F3 init UART - LDW X,#CUARTBRR ; "'UARTBRR" def. $6803 / 9600 baud + LDW X,#CUARTBRR ; "UARTBRR" def. $6803 / 9600 baud LDW UART_BRR1,X .ifne HAS_RXUART*HAS_TXUART MOV UART_CR2,#0x0C ; Use UART1 full duplex