1
0
mirror of https://github.com/cc65/cc65.git synced 2026-02-20 07:23:34 +00:00
Files
cc65/libsrc/atari5200/conioscreen.s
Christian Groessler 02470a2343 atari5200: fix conio screen initialization
Screen memory clearing was wrong, now uses _clrscr function.
2025-03-04 23:41:30 +01:00

79 lines
1.9 KiB
ArmAsm

; setup default CONIO screen (20x24, Antic mode 6, BASIC mode 1)
;
; 28-May-2014, Christian Groessler <chris@groessler.org>
.include "atari5200.inc"
SCREEN_BUF_SIZE = 20 * 24
SCREEN_BUF = $4000 - SCREEN_BUF_SIZE
.import _clrscr
.export screen_setup
.export screen_width, screen_height
.export conio_color
screen_width = 20
screen_height = 24
.segment "ONCE"
; initialize color registers, display list, and screen memory
screen_setup:
; initialize SAVMSC
lda #<SCREEN_BUF
sta SAVMSC
lda #>SCREEN_BUF
sta SAVMSC+1
; clear screen buffer
jsr _clrscr
; set default colors
lda #GTIA_COLOR_WHITE
sta COLOR0
lda #GTIA_COLOR_LIGHTRED
sta COLOR1
lda #GTIA_COLOR_LIGHTGREEN
sta COLOR2
lda #GTIA_COLOR_BLACK
sta COLOR3
sta COLOR4 ; background
; set display list
lda #<dlist
sta SDLSTL
lda #>dlist
sta SDLSTH
rts
.bss
conio_color: .res 1
.segment "DLIST"
; display list for 20x24 text mode
dlist: .repeat 3
.byte DL_BLK8
.endrepeat
.byte DL_CHR20x8x2 | DL_LMS
.word SCREEN_BUF
.repeat 23
.byte DL_CHR20x8x2
.endrepeat
.byte DL_JVB
.word dlist
; end of display list
.assert ((* >> 10) = (dlist >> 10)), error, "Display list crosses 1K boundary"
.end