From e5a7ff49516853c6a525d7317fb67ab9e73d4d47 Mon Sep 17 00:00:00 2001 From: Colin Leroy-Mira Date: Tue, 3 Oct 2023 13:36:04 +0200 Subject: [PATCH] Remove useless comments --- libsrc/apple2/ser/a2.ssc.s | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libsrc/apple2/ser/a2.ssc.s b/libsrc/apple2/ser/a2.ssc.s index f81155543..942adad82 100644 --- a/libsrc/apple2/ser/a2.ssc.s +++ b/libsrc/apple2/ser/a2.ssc.s @@ -300,17 +300,17 @@ SER_OPEN: ; Device (hardware) not found NoDev: lda #SER_ERR_NO_DEVICE - ldx #$00 ; return value is char + ldx #$00 rts ; Invalid parameter InvParm:lda #SER_ERR_INIT_FAILED - ldx #$00 ; return value is char + ldx #$00 rts ; Baud rate not available InvBaud:lda #SER_ERR_BAUD_UNAVAIL - ldx #$00 ; return value is char + ldx #$00 rts ;---------------------------------------------------------------------------- @@ -325,7 +325,7 @@ SER_GET: cmp #$FF bne :+ lda #SER_ERR_NO_DATA - ldx #$00 ; return value is char + ldx #$00 rts : ldy Stopped ; Check for flow stopped @@ -373,7 +373,7 @@ SER_PUT: ldy SendFreeCnt ; Reload SendFreeCnt after TryToSend bne :+ lda #SER_ERR_OVERFLOW - ldx #$00 ; return value is char + ldx #$00 rts : ldy SendTail ; Put byte into send buffer @@ -421,7 +421,7 @@ SER_IOCTL: rts : lda #SER_ERR_INV_IOCTL - ldx #$00 ; return value is char + ldx #$00 rts ;----------------------------------------------------------------------------