]> git.sur5r.net Git - cc65/commitdiff
Merge branch 'master' of https://github.com/jedeoric/cc65
authorjede <jede@oric.org>
Mon, 23 Oct 2017 21:04:22 +0000 (23:04 +0200)
committerjede <jede@oric.org>
Mon, 23 Oct 2017 21:04:22 +0000 (23:04 +0200)
asminc/telestrat.inc
libsrc/telestrat/tgi/telestrat-228-200-3.s
libsrc/telestrat/toascii.s [deleted file]

index 352aa0657cd4de2f7bfb0385870f8afca0319d24..737c4b6aeedba94e42b8bf793242fbe9078fe06b 100644 (file)
@@ -17,12 +17,12 @@ FNAME_LEN       = 11            ; maximum length of file-name
 
 ; ---------------------------------------------------------------------------
 ; I/O Identifier
-; this identifers are used for channel management
+; theses identifers are used for channel management
 ; 
 
-XKBD            = $80           ; Keyboard
+XKBD            = $80           ; keyboard
 XRSE            = $83           ; RS232 in
-XSCR            = $88           ; Screen
+XSCR            = $88           ; screen
 XRSS            = $90           ; RS232 out
 
 
@@ -165,16 +165,16 @@ XCSSCR           = $35          ; switch on cursor
 XCLOSE           = $3A          ; only in TELEMON 3.x Close file
 XFWRITE          = $3B          ; only in TELEMON 3.x write file
 XSONPS           = $40
-XOUPS            = $42          ; sends Oups sound into PSG
+XOUPS            = $42          ; send Oups sound into PSG
 XPLAY            = $43
 XSOUND           = $44 
 XMUSIC           = $45 
 XZAP             = $46
 XSHOOT           = $47
-XSOUT            = $67          ; Send A register to RS232, available in telemon 2.4 & 3.x
-XHRSSE           = $8C          ; Set hires position cursor
-XDRAWA           = $8D          ; Draw a line 
-XDRAWR           = $8E          ; Draw a line 
+XSOUT            = $67          ; send A register to RS232, available in telemon 2.4 & 3.x
+XHRSSE           = $8C          ; set hires position cursor
+XDRAWA           = $8D          ; draw a line 
+XDRAWR           = $8E          ; draw a line 
 XCIRCL           = $8F
 XCURSE           = $90
 XCURMO           = $91
@@ -184,7 +184,7 @@ XBOX             = $94
 XABOX            = $95
 XFILL            = $96
 XCHAR            = $97
-XSCHAR           = $98          ; Draw a string in hires
+XSCHAR           = $98          ; draw a string in hires
 XEXPLO           = $9C 
 XPING            = $9D
 
@@ -199,7 +199,7 @@ SCRX             := $220
 SCRY             := $224
 ADSCRL           := $218
 ADSCRH           := $21C
-HRSPAT           := $2AA        ; Hires pattern : it's used to draw pattern for a line or a circle
+HRSPAT           := $2AA        ; hires pattern : it's used to draw pattern for a line or a circle
 IRQVECTOR        := $2FA
 
 
index a4313b09242433d04d4b594ee21f3191c400d4d9..1ce4fc9271d4c9ef6938e3479dc74f28baefedf7 100644 (file)
@@ -300,13 +300,11 @@ LINE:
         sta   HRSPAT
 
         BRK_TELEMON(XDRAWA)
-
         rts
 
      
         
 CIRCLE:
-
         ; not done yet
         rts
         
diff --git a/libsrc/telestrat/toascii.s b/libsrc/telestrat/toascii.s
deleted file mode 100644 (file)
index 77f0500..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-;
-; char __fastcall__ toascii (char c);
-; /* Convert a target-specific character to ASCII. */
-;
-
-.export _toascii
-
-.proc   _toascii
-
-; .X must be zero, on return.
-        ldx     #>$0000
-        rts
-
-.endproc