]> git.sur5r.net Git - cc65/blobdiff - libsrc/c64/conio.s
Moved additional zeropage variables into an extra module.
[cc65] / libsrc / c64 / conio.s
index f822c945defb3af9ef16a584840f543cd857d18e..0e3f97947eed0aec5827d0b1d8472beaf50e4484 100644 (file)
@@ -4,20 +4,7 @@
 ; Low level stuff for screen output/console input
 ;
 
-       .export         initconio
        .exportzp       CURS_X, CURS_Y
-       .import         xsize, ysize
 
-       .include        "../cbm/cbm.inc"
        .include        "c64.inc"
 
-.code
-
-initconio:
-       jsr     SCREEN
-       stx     xsize
-       sty     ysize
-       rts
-
-
-