]> git.sur5r.net Git - cc65/blobdiff - libsrc/pet/conio.s
On Apple GEOS all "low jumptable" entries went into 'diskdrv.inc'. So this needs...
[cc65] / libsrc / pet / conio.s
index 19e7533338ce916e4466929fbefe2b997d059ba0..45ae54d74de1f49516839026d6510b436ae5858b 100644 (file)
@@ -4,21 +4,7 @@
 ; Low level stuff for screen output/console input
 ;
 
-       .export         initconio
-       .import         xsize, ysize
        .exportzp       CURS_X, CURS_Y
 
        .include        "pet.inc"
 
-.code
-
-initconio:
-               ldx     SCR_LINELEN
-       inx                     ; Variable is one less
-               stx     xsize
-       lda     #25
-       sta     ysize
-       rts
-
-
-