1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-16 09:29:32 +00:00

Match screen dimensions as in BASIC.

Experiments show that under BASIC by default
25 rows by 24 columns are used. 24 columns is
also the width that is fully displayed on a real
C1P on the monitor. conio now matches that now.
This commit is contained in:
Stephan Mühlstrasser 2015-02-23 23:07:00 +01:00
parent 7c4f96de81
commit 8deeb2c59e

View File

@ -6,5 +6,5 @@ KBD := $DF00 ; Polled keyboard register
; Other definitions
VIDEORAMSIZE = $0400 ; Size of C1P video RAM (1 kB)
SCR_WIDTH = $19 ; Screen width
SCR_WIDTH = $18 ; Screen width
SCR_HEIGHT = $19 ; Screen height