Changed the prototype of videomode() to take and return an unsigned instead of

an unsigned char. Two more video mode constants as discussed on the list.


git-svn-id: svn://svn.cc65.org/cc65/trunk@4133 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz
2009-09-08 16:25:12 +00:00
parent 6c87aa64be
commit 931b6418bf
3 changed files with 8 additions and 6 deletions

View File

@@ -1,12 +1,12 @@
;
; Ullrich von Bassewitz, 2009-09-07
;
; unsigned char __fastcall__ videomode (unsigned char Mode);
; unsigned __fastcall__ videomode (unsigned Mode);
; /* Set the video mode, return the old mode */
;
.export _videomode
.import SWAPPER, BSOUT
.import SWAPPER, BSOUT
.include "c128.inc"