mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
25 lines
389 B
ArmAsm
25 lines
389 B
ArmAsm
|
;
|
||
|
; Ullrich von Bassewitz, 2002-12-03
|
||
|
;
|
||
|
; unsigned char __fastcall__ get_tv (void);
|
||
|
; /* Return the video mode the machine is using */
|
||
|
;
|
||
|
|
||
|
.export _get_tv
|
||
|
|
||
|
.include "c64.inc"
|
||
|
|
||
|
|
||
|
;--------------------------------------------------------------------------
|
||
|
; _get_tv
|
||
|
|
||
|
.proc _get_tv
|
||
|
|
||
|
lda PALFLAG
|
||
|
ldx #0
|
||
|
rts
|
||
|
|
||
|
.endproc
|
||
|
|
||
|
|