Merge pull request #631 from blackystardust/master

Added C64 Chameleon accelerator code and documentation.
This commit is contained in:
Oliver Schmidt
2018-04-27 20:47:03 +02:00
committed by GitHub
12 changed files with 303 additions and 18 deletions

View File

@@ -3,7 +3,7 @@
; 2018-04-26, Greg King
;
; extern unsigned char __fastcall__ set_c128_speed (unsigned char speed);
; unsigned char __fastcall__ set_c128_speed (unsigned char speed);
;
;/* Set the speed of the C128 8502 CPU; using SPEED_SLOW will switch to
; * 1 Mhz (slow) mode, SPEED_2X or SPEED_FAST will switch to 2Mhz (fast) mode.
@@ -19,7 +19,7 @@
; * For C128 programs, no detect function call is needed.
; */
; extern unsigned char get_c128_speed (void);
; unsigned char get_c128_speed (void);
;
;/* Get the speed of the C128 8502 CPU.
; *

View File

@@ -2,7 +2,7 @@
; Marco van den Heuvel, 2018-04-09
;
; extern unsigned char __fastcall__ set_scpu_speed (unsigned char speed);
; unsigned char __fastcall__ set_scpu_speed (unsigned char speed);
;
;/* Set the speed of the SuperCPU cartridge, using SPEED_SLOW will switch to
; * 1 Mhz mode, SPEED_20X or SPEED_FAST will switch to 20 Mhz mode.
@@ -19,7 +19,7 @@
; * make sure you use 'detect_scpu();' before using.
; */
; extern unsigned char get_scpu_speed (void);
; unsigned char get_scpu_speed (void);
;
;/* Get the speed of the SuperCPU cartridge.
; *