1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-09 11:30:29 +00:00

Correcting comments alignment

Correcting an address error in telestrat.inc when cleaning files which broke read.s primitive
This commit is contained in:
jede 2017-01-31 22:20:19 +01:00
parent b5fef66f37
commit 6f58b9a22d
2 changed files with 14 additions and 14 deletions

View File

@ -27,7 +27,7 @@ RESB := $02
TR0 := $0C
TR1 := $0D
PTR_READ_DEST := $2D ; used for XFREAD and XWRITE only in telemon 3.0
PTR_READ_DEST := $2C ; used for XFREAD and XWRITE only in telemon 3.0
HRSX := $46
HRSY := $47
@ -108,12 +108,12 @@ XWSTR0 = $14
XTEXT = $19
XHIRES = $1A
XMINMA = $1F
XFREAD = $27 ; only in TELEMON 3.0
XOPEN = $30 ; only in TELEMON 3.0
XCOSCR = $34 ; switch off cursor
XCSSCR = $35 ; switch on cursor
XCLOSE = $3A ; only in TELEMON 3.0 Close file
XFWRITE = $3B ; only in TELEMON 3.0 write file
XFREAD = $27 ; only in TELEMON 3.0
XOPEN = $30 ; only in TELEMON 3.0
XCOSCR = $34 ; switch off cursor
XCSSCR = $35 ; switch on cursor
XCLOSE = $3A ; only in TELEMON 3.0 Close file
XFWRITE = $3B ; only in TELEMON 3.0 write file
XSONPS = $40
XOUPS = $42
XPLAY = $43

View File

@ -3,13 +3,13 @@
;
.FEATURE c_comments,labels_without_colons,pc_assignment, loose_char_term
.export _read
.import popax
.include "zeropage.inc"
.include "telestrat.inc"
.FEATURE c_comments,labels_without_colons,pc_assignment, loose_char_term
.export _read
.import popax
.include "zeropage.inc"
.include "telestrat.inc"
; int read (int fd, void* buf, unsigned count);