2004-10-26 19:07:38 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2004-10-26
|
|
|
|
;
|
2012-03-04 13:08:54 +00:00
|
|
|
; unsigned char get_tv (void);
|
2004-10-26 19:07:38 +00:00
|
|
|
; /* Return the video mode the machine is using */
|
|
|
|
;
|
|
|
|
|
|
|
|
.include "pet.inc"
|
2013-05-09 13:56:54 +02:00
|
|
|
.include "get_tv.inc"
|
2004-10-26 19:07:38 +00:00
|
|
|
|
|
|
|
;--------------------------------------------------------------------------
|
|
|
|
; _get_tv
|
|
|
|
|
|
|
|
.proc _get_tv
|
|
|
|
|
|
|
|
lda #TV::OTHER
|
|
|
|
ldx #0
|
|
|
|
rts
|
|
|
|
|
|
|
|
.endproc
|