mirror of
https://github.com/irmen/prog8.git
synced 2024-12-25 08:29:25 +00:00
tweaks
This commit is contained in:
parent
aeabf0f324
commit
473efbe67a
@ -395,9 +395,10 @@ _end rts
|
|||||||
goto io_error
|
goto io_error
|
||||||
|
|
||||||
while not c64.READST() {
|
while not c64.READST() {
|
||||||
@(messageptr) = c64.CHRIN()
|
first_byte = c64.CHRIN()
|
||||||
if @(messageptr) in "\r\n"
|
if first_byte=='\r' or first_byte=='\n'
|
||||||
break
|
break
|
||||||
|
@(messageptr) = first_byte
|
||||||
messageptr++
|
messageptr++
|
||||||
}
|
}
|
||||||
@(messageptr) = 0
|
@(messageptr) = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user