2002-12-03 22:19:21 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2002-12-03
|
|
|
|
;
|
|
|
|
; unsigned char __fastcall__ get_tv (void);
|
|
|
|
; /* Return the video mode the machine is using */
|
|
|
|
;
|
|
|
|
|
|
|
|
.include "c64.inc"
|
2004-10-26 19:05:19 +00:00
|
|
|
.include "get_tv.inc"
|
2002-12-03 22:19:21 +00:00
|
|
|
|
|
|
|
;--------------------------------------------------------------------------
|
|
|
|
; _get_tv
|
|
|
|
|
|
|
|
.proc _get_tv
|
|
|
|
|
|
|
|
lda PALFLAG
|
|
|
|
ldx #0
|
|
|
|
rts
|
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
2004-10-26 19:05:19 +00:00
|
|
|
|