]> git.sur5r.net Git - cc65/commitdiff
Fixed some comment and documentation errors.
authorMarco van den Heuvel <blackystardust68@yahoo.com>
Sun, 15 Apr 2018 18:55:58 +0000 (11:55 -0700)
committerMarco van den Heuvel <blackystardust68@yahoo.com>
Sun, 15 Apr 2018 18:55:58 +0000 (11:55 -0700)
doc/funcref.sgml
libsrc/c64/acc_c64dtv_speed.s

index 4dfbf29e06bb87324980ab1def1ecad77ae93663..268c210fee90fb9d42af6164d0b3cf83e7a22019 100644 (file)
@@ -2936,8 +2936,8 @@ used in presence of a prototype.
 </itemize>
 <tag/Availability/cc65 (not all platforms)
 <tag/See also/
-<ref id="get_scpu_speed" name="get_c64dtv_speed">,
-<ref id="set_scpu_speed" name="set_c64dtv_speed">,
+<ref id="get_c64dtv_speed" name="get_c64dtv_speed">,
+<ref id="set_c64dtv_speed" name="set_c64dtv_speed">,
 <tag/Example/None.
 </descrip>
 </quote>
@@ -3512,7 +3512,7 @@ header files define constants that can be used to check the return code.
 <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 the cartridge.
+<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)
@@ -6103,7 +6103,7 @@ clean-up when exitting the program.
 <descrip>
 <tag/Function/Set the current speed of the C64DTV.
 <tag/Header/<tt/<ref id="accelerator.h" name="accelerator.h">/
-<tag/Declaration/<tt/unsigned char set_c64dtv_speed (unsigned char speed);/
+<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.
@@ -6125,7 +6125,7 @@ clean-up when exitting the program.
 <descrip>
 <tag/Function/Set the current speed of the C64/C128 SuperCPU cartridge.
 <tag/Header/<tt/<ref id="accelerator.h" name="accelerator.h">/
-<tag/Declaration/<tt/unsigned char set_scpu_speed (unsigned char speed);/
+<tag/Declaration/<tt/unsigned char __fastcall__ set_scpu_speed (unsigned char speed);/
 <tag/Description/The function returns the speed after trying to set the speed of the SuperCPU cartridge.
 <tag/Notes/<itemize>
 <item>The function is specific to the C128 and C64.
index 9cf49673e34bb116fd9bf3feeb90aaad2a465a40..03bff8aa6f9886f78472b467d1b6de135a2bde8f 100755 (executable)
@@ -41,7 +41,7 @@ low_speed:
 set_speed:
         .byte   $32,$99               ; SAC #$99   set accumulator to reg 9 (cpu control)
         txa                           ; (re)set skip and burst bits
-        .byte   $32,$00               ; SAC #$99   set accumulator back to reg 0
+        .byte   $32,$00               ; SAC #$00   set accumulator back to reg 0
         jmp     _get_c64dtv_speed
 
 high_speed: