2002-12-03 22:19:21 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2002-12-03
|
|
|
|
;
|
2012-03-04 13:08:54 +00:00
|
|
|
; unsigned char get_tv (void);
|
2002-12-03 22:19:21 +00:00
|
|
|
; /* Return the video mode the machine is using */
|
|
|
|
;
|
|
|
|
|
|
|
|
.include "c64.inc"
|
2013-05-09 13:56:54 +02:00
|
|
|
.include "get_tv.inc"
|
2002-12-03 22:19:21 +00:00
|
|
|
|
|
|
|
;--------------------------------------------------------------------------
|
|
|
|
; _get_tv
|
|
|
|
|
|
|
|
.proc _get_tv
|
|
|
|
|
|
|
|
lda PALFLAG
|
|
|
|
ldx #0
|
|
|
|
rts
|
|
|
|
|
|
|
|
.endproc
|