mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 19:29:37 +00:00
Address code review comments
This commit is contained in:
parent
39d6080945
commit
e90a8f3123
@ -305,7 +305,7 @@ SER_CLOSE:
|
||||
stx Opened ; Mark port as closed
|
||||
|
||||
cli
|
||||
: txa
|
||||
: txa ; Promote char return value
|
||||
rts
|
||||
|
||||
;----------------------------------------------------------------------------
|
||||
@ -313,13 +313,17 @@ SER_CLOSE:
|
||||
; Must return an SER_ERR_xx code in a/x.
|
||||
|
||||
SER_OPEN:
|
||||
bit $C082 ; Check if this is a IIgs
|
||||
; Check if this is a IIgs (Apple II Miscellaneous TechNote #7,
|
||||
; Apple II Family Identification)
|
||||
sec
|
||||
jsr $FE1F ; https://prodos8.com/docs/technote/misc/07/
|
||||
bit $C082
|
||||
jsr $FE1F
|
||||
bit $C080
|
||||
|
||||
bcc IIgs
|
||||
|
||||
bit $C080
|
||||
lda #SER_ERR_NO_DEVICE ; Not a IIgs
|
||||
|
||||
SetupErrOut:
|
||||
cli
|
||||
ldx #$00 ; Promote char return value
|
||||
@ -327,8 +331,7 @@ SetupErrOut:
|
||||
rts
|
||||
|
||||
IIgs:
|
||||
bit $C080
|
||||
sei ; Disable interrupts
|
||||
sei
|
||||
|
||||
; Check if the handshake setting is valid
|
||||
ldy #SER_PARAMS::HANDSHAKE ; Handshake
|
||||
|
Loading…
Reference in New Issue
Block a user