]> git.sur5r.net Git - cc65/blobdiff - libsrc/plus4/conio.s
no TGI_ERR_NO_MEM or TGI_ERR_NO_IOCB anymore: replaced by TGI_ERR_NO_RES
[cc65] / libsrc / plus4 / conio.s
index d6f2531116f65d1f2f2db7544aea0ad725a2c819..23c7948560605f6ce4818c57270b7a974a1a21b6 100644 (file)
@@ -4,35 +4,7 @@
 ; Low level stuff for screen output/console input
 ;
 
-       .export         initconio, doneconio
        .exportzp       CURS_X, CURS_Y
-       .import         xsize, ysize
 
        .include        "plus4.inc"
-       .include        "../cbm/cbm.inc"
-
-.code
-
-initconio:
-       ldy     #15
-L1:    lda     fnkeys,y
-       sta     FKEY_SPACE,y
-       dey
-       bpl     L1
-       rts
-
-
-doneconio:
-       ldx     #$39            ; Copy the original function keys
-L2:    lda     FKEY_ORIG,x
-       sta     FKEY_SPACE,x
-       dex
-       bpl     L2
-       rts
-
-; Function key table, readonly
-
-.rodata
-fnkeys:        .byte   $01, $01, $01, $01, $01, $01, $01, $01
-       .byte   133, 137, 134, 138, 135, 139, 136, 140