mirror of
https://github.com/cc65/cc65.git
synced 2024-11-11 16:07:04 +00:00
80fc3a0b48
is still always false, but will be evaluated by the linker instead of the assembler. The assembler will otherwise emit a warning when just translating the module. git-svn-id: svn://svn.cc65.org/cc65/trunk@4190 b7a2c559-68d2-44c3-8de9-860c34a00d81
24 lines
519 B
ArmAsm
24 lines
519 B
ArmAsm
;
|
|
; Ullrich von Bassewitz, 2003-02-13
|
|
;
|
|
; void toggle_videomode (void);
|
|
; /* Toggle the video mode between 40 and 80 chars (calls SWAPPER) */
|
|
;
|
|
|
|
.export _toggle_videomode
|
|
.import SWAPPER, BSOUT
|
|
|
|
; This function is deprecated
|
|
.assert * < 0, warning, "toggle_videomode() is deprecated, please use videomode() instead!"
|
|
|
|
|
|
|
|
.proc _toggle_videomode
|
|
|
|
jsr SWAPPER ; Toggle the mode
|
|
lda #14
|
|
jmp BSOUT ; Switch to lower case chars
|
|
|
|
.endproc
|
|
|