]> git.sur5r.net Git - cc65/commitdiff
Removed '_' prefix from textframe(xy) because this prefix for non-standard symbols...
authorol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 10 Sep 2009 19:18:15 +0000 (19:18 +0000)
committerol.sc <ol.sc@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Thu, 10 Sep 2009 19:18:15 +0000 (19:18 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4143 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/apple2enh.sgml
doc/funcref.sgml
include/apple2enh.h
libsrc/apple2/textframe.s

index 17259ab1de22b642925709b5bbc76ebedf6a9b6b..dac70e877774599933e42b069d01ebceb4ed1ca0 100644 (file)
@@ -126,9 +126,10 @@ usage.
 
 <itemize>
 <item>_dos_type
-<item>_textframe
-<item>_textframexy
 <item>get_ostype
+<item>textframe
+<item>textframexy
+<item>videomode
 </itemize>
 
 
index bc49e0828d868790d40218ff18a352236ec003cf..628362d87af465502cf5f98a955023fa4ff84398 100644 (file)
@@ -74,9 +74,9 @@ function.
 
 <itemize>
 <item>_dos_type
-<item>_textframe
-<item>_textframexy
 <item><ref id="get_ostype" name="get_ostype">
+<item>textframe
+<item>textframexy
 <item><ref id="videomode" name="videomode">
 </itemize>
 
index 39aefdd9ffc895934a91bb3b956dbfaa5cbe3163..0da2a351e5b0280f6cef4f8e51d0d3d9db06c416 100644 (file)
@@ -72,9 +72,9 @@
 #define CH_F9          0xB9
 #define CH_F10         0xB0
 
-/* Styles for _textframe */
-#define _TEXTFRAME_WIDE        0x00
-#define _TEXTFRAME_TALL        0x04
+/* Styles for textframe */
+#define TEXTFRAME_WIDE 0x00
+#define TEXTFRAME_TALL 0x04
 
 /* Video modes */
 #define VIDEOMODE_40x24 0x0011
 
 
 
-void __fastcall__ _textframe (unsigned char width, unsigned char height,
-                             unsigned char style);
+void __fastcall__ textframe (unsigned char width, unsigned char height,
+                             unsigned char style);
 /* Output a frame on the text screen with the given width and height
  * starting at the current cursor position and using the given style.
  */
 
-void __fastcall__ _textframexy (unsigned char x, unsigned char y,
-                               unsigned char width, unsigned char height,
-                               unsigned char style);
-/* Same as "gotoxy (x, y); _textframe (width, height, style);" */
+void __fastcall__ textframexy (unsigned char x, unsigned char y,
+                               unsigned char width, unsigned char height,
+                               unsigned char style);
+/* Same as "gotoxy (x, y); textframe (width, height, style);" */
 
 unsigned __fastcall__ videomode (unsigned mode);
 /* Set the video mode, return the old mode. Call with one of the VIDEOMODE_xx
index 9ed42cad45cfdc9047efa7b627347d4b8522b7ca..c62cbb75d66c12821c3587a89c03c262582e3a30 100644 (file)
@@ -1,14 +1,14 @@
 ;
 ; Oliver Schmidt, 10.03.2004
 ;
-; void __fastcall__ _textframexy (unsigned char x, unsigned char y,
-;                                 unsigned char width, unsigned char height,
-;                                 unsigned char style);
-; void __fastcall__ _textframe (unsigned char width, unsigned char height);
-;                               unsigned char style);
+; void __fastcall__ textframexy (unsigned char x, unsigned char y,
+;                                unsigned char width, unsigned char height,
+;                                unsigned char style);
+; void __fastcall__ textframe (unsigned char width, unsigned char height,
+;                              unsigned char style);
 ;
 
-        .export        __textframexy, __textframe
+        .export        _textframexy, _textframe
         .import        popa, pusha, _gotoxy
         .import                chlinedirect, cvlinedirect
 
@@ -20,11 +20,11 @@ HEIGHT  = tmp3
 XORIGIN = tmp4
 YORIGIN = ptr1
 
-__textframexy:
+_textframexy:
         sec
         bra    :+
 
-__textframe:
+_textframe:
         clc
 :       ldx    INVFLG
         phx                    ; Save character display mode