1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-17 16:29:32 +00:00

Fixed the creativision function prototypes.

Added const to a pointer parameter.
This commit is contained in:
Greg King 2021-05-29 08:37:38 -04:00
parent 010eea12a2
commit 6bedade593
2 changed files with 8 additions and 8 deletions

View File

@ -73,6 +73,6 @@
void __fastcall__ psg_outb (unsigned char b);
void __fastcall__ psg_delay (unsigned char b);
void psg_silence (void);
void __fastcall__ bios_playsound(void *a, unsigned char b);
void __fastcall__ bios_playsound (const void *a, unsigned char b);
#endif /* #ifndef _CVISION_H */

View File

@ -1,6 +1,6 @@
; void __fastcall__ psg_outb (unsigned char b);
; void __fastcall__ psg_delayms( unsigned char c);
; void __fastcall__ bios_playsound( void *b, unsigned char c);
; void __fastcall__ psg_delay (unsigned char c);
; void __fastcall__ bios_playsound (const void *b, unsigned char c);
; void psg_silence (void);
.export _psg_outb, _psg_silence, _psg_delay