diff --git a/libsrc/cbm610/Makefile b/libsrc/cbm610/Makefile index 22f516c62..bd963d1da 100644 --- a/libsrc/cbm610/Makefile +++ b/libsrc/cbm610/Makefile @@ -48,6 +48,7 @@ OBJS = _scrsize.o \ crt0.o \ crtc.o \ extzp.o \ + get_tv.o \ kbhit.o \ kclose.o \ kernal.o \ diff --git a/libsrc/cbm610/get_tv.s b/libsrc/cbm610/get_tv.s new file mode 100644 index 000000000..044ee0543 --- /dev/null +++ b/libsrc/cbm610/get_tv.s @@ -0,0 +1,20 @@ +; +; Stefan Haubenthal, 2009-08-02 +; +; unsigned char __fastcall__ get_tv (void); +; /* Return the video mode the machine is using */ +; + + .include "get_tv.inc" + + +;-------------------------------------------------------------------------- +; _get_tv + +.proc _get_tv + + lda #TV::OTHER + rts + +.endproc