]> git.sur5r.net Git - cc65/commitdiff
Updated c128 accelerator code and documentation.
authorMarco van den Heuvel <blackystardust68@yahoo.com>
Sat, 21 Apr 2018 16:52:50 +0000 (09:52 -0700)
committerMarco van den Heuvel <blackystardust68@yahoo.com>
Sat, 21 Apr 2018 16:52:50 +0000 (09:52 -0700)
doc/c64.sgml
doc/funcref.sgml
libsrc/c64/acc_c128_speed.s
libsrc/c64/acc_detect_c128.s

index 03a03974ca925b507c98f7bdf6ded03f90e12b8e..c2c9551b49d3c364e3930bd7eb0e39986e827ae3 100644 (file)
@@ -175,14 +175,14 @@ The functions listed below are accelerator functions for the C64. See the <url
 url="funcref.html" name="function reference"> for declaration and usage.
 
 <itemize>
-<item>detect_c64dtv
 <item>detect_c128
+<item>detect_c64dtv
 <item>detect_scpu
-<item>get_c64dtv_speed
 <item>get_c128_speed
+<item>get_c64dtv_speed
 <item>get_scpu_speed
-<item>set_c64dtv_speed
 <item>set_c128_speed
+<item>set_c64dtv_speed
 <item>set_scpu_speed
 </itemize>
 
index 17a42b103e7211bdfa1ffcc8d974dd3e41b754cb..75028b7b64995e2b396252e1b83aaec41ef2a8ad 100644 (file)
@@ -68,14 +68,14 @@ function.
 <sect1><tt/accelerator.h/<label id="accelerator.h"><p>
 
 <itemize>
-<item><ref id="detect_c64dtv" name="detect_c64dtv">
 <item><ref id="detect_c128" name="detect_c128">
+<item><ref id="detect_c64dtv" name="detect_c64dtv">
 <item><ref id="detect_scpu" name="detect_scpu">
-<item><ref id="get_c64dtv_speed" name="get_c64dtv_speed">
 <item><ref id="get_c128_speed" name="get_c128_speed">
+<item><ref id="get_c64dtv_speed" name="get_c64dtv_speed">
 <item><ref id="get_scpu_speed" name="get_scpu_speed">
+<item><ref id="set_c128_speed" name="set_c128_speed">
 <item><ref id="set_c64dtv_speed" name="set_c64dtv_speed">
-<item><ref id="set_c128_speed" name="set_c64dtv_speed">
 <item><ref id="set_scpu_speed" name="set_scpu_speed">
 </itemize>
 
@@ -2926,41 +2926,41 @@ used in presence of a prototype.
 </quote>
 
 
-<sect1>detect_c64dtv<label id="detect_c64dtv"><p>
+<sect1>detect_c128<label id="detect_c128"><p>
 
 <quote>
 <descrip>
-<tag/Function/Check for the presence of the C64DTV.
+<tag/Function/Check for the presence of a C128 in C64 mode.
 <tag/Header/<tt/<ref id="accelerator.h" name="accelerator.h">/
-<tag/Declaration/<tt/unsigned char detect_c64dtv (void);/
-<tag/Description/The function returns a 1 if a C64DTV has been detected.
+<tag/Declaration/<tt/unsigned char detect_c128 (void);/
+<tag/Description/The function returns a 1 if a C128 in C64 mode has been detected.
 <tag/Notes/<itemize>
 <item>The function is specific to the C64.
 </itemize>
 <tag/Availability/cc65 (not all platforms)
 <tag/See also/
-<ref id="get_c64dtv_speed" name="get_c64dtv_speed">,
-<ref id="set_c64dtv_speed" name="set_c64dtv_speed">,
+<ref id="get_c128_speed" name="get_c128_speed">,
+<ref id="set_c128_speed" name="set_c128_speed">,
 <tag/Example/None.
 </descrip>
 </quote>
 
 
-<sect1>detect_c128<label id="detect_c128"><p>
+<sect1>detect_c64dtv<label id="detect_c64dtv"><p>
 
 <quote>
 <descrip>
-<tag/Function/Check for the presence of a C128 in C64 mode.
+<tag/Function/Check for the presence of the C64DTV.
 <tag/Header/<tt/<ref id="accelerator.h" name="accelerator.h">/
-<tag/Declaration/<tt/unsigned char detect_c128 (void);/
-<tag/Description/The function returns a 1 if a C128 in C64 mode has been detected.
+<tag/Declaration/<tt/unsigned char detect_c64dtv (void);/
+<tag/Description/The function returns a 1 if a C64DTV has been detected.
 <tag/Notes/<itemize>
 <item>The function is specific to the C64.
 </itemize>
 <tag/Availability/cc65 (not all platforms)
 <tag/See also/
-<ref id="get_c128_speed" name="get_c128_speed">,
-<ref id="set_c128_speed" name="set_c128_speed">,
+<ref id="get_c64dtv_speed" name="get_c64dtv_speed">,
+<ref id="set_c64dtv_speed" name="set_c64dtv_speed">,
 <tag/Example/None.
 </descrip>
 </quote>
@@ -3525,45 +3525,45 @@ header files define constants that can be used to check the return code.
 </quote>
 
 
-<sect1>get_c64dtv_speed<label id="get_c64dtv_speed"><p>
+<sect1>get_c128_speed<label id="get_c128_speed"><p>
 
 <quote>
 <descrip>
-<tag/Function/Get the current speed of the C64DTV.
+<tag/Function/Get the current speed of the C128 in C64 mode.
 <tag/Header/<tt/<ref id="accelerator.h" name="accelerator.h">/
-<tag/Declaration/<tt/unsigned char get_c64dtv_speed (void);/
-<tag/Description/The function returns the current speed of the C64DTV.
+<tag/Declaration/<tt/unsigned char get_c128_speed (void);/
+<tag/Description/The function returns the current speed of the C128 in C64 mode.
 <tag/Notes/<itemize>
 <item>The function is specific to the C64.
-<item>The function does not check for the presence of the C64DTV.
+<item>The function does not check for the presence of a C128 in C64 mode.
 <item>See the accelerator.h header for the speed definitions.
 </itemize>
 <tag/Availability/cc65 (not all platforms)
 <tag/See also/
-<ref id="detect_c64dtv" name="detect_c64dtv">,
-<ref id="set_c64dtv_speed" name="set_c64dtv_speed">,
+<ref id="detect_c128" name="detect_c128">,
+<ref id="set_c128_speed" name="set_c128_speed">,
 <tag/Example/None.
 </descrip>
 </quote>
 
 
-<sect1>get_c128_speed<label id="get_c128_speed"><p>
+<sect1>get_c64dtv_speed<label id="get_c64dtv_speed"><p>
 
 <quote>
 <descrip>
-<tag/Function/Get the current speed of the C128 in C64 mode.
+<tag/Function/Get the current speed of the C64DTV.
 <tag/Header/<tt/<ref id="accelerator.h" name="accelerator.h">/
-<tag/Declaration/<tt/unsigned char get_c128_speed (void);/
-<tag/Description/The function returns the current speed of the C128 in C64 mode.
+<tag/Declaration/<tt/unsigned char get_c64dtv_speed (void);/
+<tag/Description/The function returns the current speed of the C64DTV.
 <tag/Notes/<itemize>
 <item>The function is specific to the C64.
-<item>The function does not check for the presence of a C128 in C64 mode.
+<item>The function does not check for the presence of the C64DTV.
 <item>See the accelerator.h header for the speed definitions.
 </itemize>
 <tag/Availability/cc65 (not all platforms)
 <tag/See also/
-<ref id="detect_c128" name="detect_c128">,
-<ref id="set_c128_speed" name="set_c128_speed">,
+<ref id="detect_c64dtv" name="detect_c64dtv">,
+<ref id="set_c64dtv_speed" name="set_c64dtv_speed">,
 <tag/Example/None.
 </descrip>
 </quote>
@@ -6142,45 +6142,45 @@ clean-up when exitting the program.
 </quote>
 
 
-<sect1>set_c64dtv_speed<label id="set_c64dtv_speed"><p>
+<sect1>set_c128_speed<label id="set_c128_speed"><p>
 
 <quote>
 <descrip>
-<tag/Function/Set the current speed of the C64DTV.
+<tag/Function/Set the current speed of a C128 in C64 mode.
 <tag/Header/<tt/<ref id="accelerator.h" name="accelerator.h">/
-<tag/Declaration/<tt/unsigned char __fastcall__ set_c64dtv_speed (unsigned char speed);/
-<tag/Description/The function returns the speed after trying to set the speed of the C64DTV.
+<tag/Declaration/<tt/unsigned char __fastcall__ set_c128_speed (unsigned char speed);/
+<tag/Description/The function returns the speed after trying to set the speed of the C128 in C64 mode.
 <tag/Notes/<itemize>
 <item>The function is specific to the C64.
-<item>The function does not check for the presence of the C64DTV.
+<item>The function does not check for the presence of a C128 in C64 mode.
 <item>See the accelerator.h header for the speed definitions.
 </itemize>
 <tag/Availability/cc65 (not all platforms)
 <tag/See also/
-<ref id="detect_c64dtv" name="detect_c64dtv">,
-<ref id="get_c64dtv_speed" name="get_c64dtv_speed">,
+<ref id="detect_c128" name="detect_c128">,
+<ref id="get_c128_speed" name="get_c128_speed">,
 <tag/Example/None.
 </descrip>
 </quote>
 
 
-<sect1>set_c128_speed<label id="set_c128_speed"><p>
+<sect1>set_c64dtv_speed<label id="set_c64dtv_speed"><p>
 
 <quote>
 <descrip>
-<tag/Function/Set the current speed of a C128 in C64 mode.
+<tag/Function/Set the current speed of the C64DTV.
 <tag/Header/<tt/<ref id="accelerator.h" name="accelerator.h">/
-<tag/Declaration/<tt/unsigned char __fastcall__ set_c128_speed (unsigned char speed);/
-<tag/Description/The function returns the speed after trying to set the speed of the C128 in C64 mode.
+<tag/Declaration/<tt/unsigned char __fastcall__ set_c64dtv_speed (unsigned char speed);/
+<tag/Description/The function returns the speed after trying to set the speed of the C64DTV.
 <tag/Notes/<itemize>
 <item>The function is specific to the C64.
-<item>The function does not check for the presence of a C128 in C64 mode.
+<item>The function does not check for the presence of the C64DTV.
 <item>See the accelerator.h header for the speed definitions.
 </itemize>
 <tag/Availability/cc65 (not all platforms)
 <tag/See also/
-<ref id="detect_c128" name="detect_c128">,
-<ref id="get_c128_speed" name="get_c128_speed">,
+<ref id="detect_c64dtv" name="detect_c64dtv">,
+<ref id="get_c64dtv_speed" name="get_c64dtv_speed">,
 <tag/Example/None.
 </descrip>
 </quote>
index 4ec23b1da0eae7bb707e186906374ce28d699578..4cb2630fa904a68eaf732f5ddd284a7d6a565e4f 100755 (executable)
@@ -38,13 +38,12 @@ _set_c128_speed:
         bcs     high_speed
 store_speed:
         sta     C128_VICIIE_CLK
-        jmp     _get_c128_speed
 
+        .byte   $2C              ; skip over the lda #$01
 high_speed:
         lda     #$01
         bne     store_speed
 
-
 _get_c128_speed:
         lda     C128_VICIIE_CLK
         and     #$01
index 591ff6c591c2d8dfba334de7a4368f95bc698966..71996730e95bee96ee650b6c1c82afc4d0971e77 100755 (executable)
@@ -21,13 +21,16 @@ _detect_c128:
 
 ; Make sure the CPU is a 8502
         .byte   $1A                   ; NOP on 8502, INA on 65(S)C(E)02, 4510 and 65816
-        bne     not_found
+        beq     found
+        .byte   $3A                   ; decrement A again, so a #$00 can be returned
+        rts
+
+found:
 
 ; Make sure a C128 VICIIe is present
         ldy     C128_VICIIE_CLK
         cpy     #$FF
         beq     not_found
-found:
         lda     #$01
 not_found:
         rts