]> git.sur5r.net Git - cc65/blob - libsrc/pet/conio.s
This commit was generated by cvs2svn to compensate for changes in r2,
[cc65] / libsrc / pet / conio.s
1 ;
2 ; Ullrich von Bassewitz, 26.11.1998
3 ;
4 ; Low level stuff for screen output/console input
5 ;
6
7         .export         initconio
8         .import         xsize, ysize
9         .exportzp       CURS_X, CURS_Y
10
11         .include        "pet.inc"
12
13 .code
14
15 initconio:
16         ldx     SCR_LINELEN
17         inx                     ; Variable is one less
18         stx     xsize
19         lda     #25
20         sta     ysize
21         rts
22
23
24