Removed extern keyword from function prototypes.

This commit is contained in:
Marco van den Heuvel
2018-04-27 09:16:25 -07:00
parent 1428015158
commit 97e69952c4
6 changed files with 21 additions and 21 deletions

View File

@@ -2,7 +2,7 @@
; Marco van den Heuvel, 2018-04-14
;
; extern unsigned char __fastcall__ set_c64dtv_speed (unsigned char speed);
; unsigned char __fastcall__ set_c64dtv_speed (unsigned char speed);
;
;/* Set the speed of the C64DTV, using SPEED_SLOW will switch to
; * slow mode, SPEED_2X or SPEED_FAST will switch to fast mode.
@@ -16,7 +16,7 @@
; * make sure you use 'detect_c64dtv();' before using.
; */
; extern unsigned char get_c64dtv_speed (void);
; unsigned char get_c64dtv_speed (void);
;
;/* Get the speed of the C64DTV.
; *

View File

@@ -2,7 +2,7 @@
; Marco van den Heuvel, 2018-04-25
;
; extern unsigned char __fastcall__ set_chameleon_speed (unsigned char speed);
; unsigned char __fastcall__ set_chameleon_speed (unsigned char speed);
;
;/* Set the speed of the Chameleon cartridge, the following inputs
; * are accepted:
@@ -25,7 +25,7 @@
; * make sure you use 'detect_chameleon();' before using.
; */
; extern unsigned char get_chameleon_speed (void);
; unsigned char get_chameleon_speed (void);
;
;/* Get the speed of the Chameleon cartridge.
; *

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.
; *