mirror of
https://github.com/cc65/cc65.git
synced 2024-11-04 17:04:58 +00:00
03311e7268
also renames libsrc/atari5200/extra/conioscreen_20x12.s to libsrc/atari5200/extra/conioscreen-20x12.s to be in line with other optional link modules
93 lines
2.3 KiB
ArmAsm
93 lines
2.3 KiB
ArmAsm
; setup alternative CONIO screen (20x12, Antic mode 7, BASIC mode 2)
|
|
;
|
|
; 02-Apr-2019, Christian Groessler <chris@groessler.org>
|
|
|
|
.include "atari5200.inc"
|
|
|
|
SCREEN_BUF_SIZE = 20 * 12
|
|
SCREEN_BUF = $4000 - SCREEN_BUF_SIZE
|
|
|
|
.export screen_setup
|
|
.export screen_width, screen_height
|
|
.export conio_color
|
|
|
|
screen_width = 20
|
|
screen_height = 12
|
|
|
|
|
|
.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
|
|
|
|
; initialize cursor position
|
|
lda #0
|
|
sta COLCRS_5200
|
|
sta ROWCRS_5200
|
|
|
|
; clear screen buffer
|
|
ldy #<(SCREEN_BUF_SIZE-1)
|
|
ldx #>(SCREEN_BUF_SIZE-1)
|
|
clrscr: sta (SAVMSC),y
|
|
dey
|
|
cpy #$FF
|
|
bne clrscr
|
|
dex
|
|
cpx #$FF
|
|
bne 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 20x12 text mode
|
|
|
|
dlist: .repeat 3
|
|
.byte DL_BLK8
|
|
.endrepeat
|
|
|
|
.byte DL_CHR20x16x2 | DL_LMS
|
|
.word SCREEN_BUF
|
|
|
|
.repeat 11
|
|
.byte DL_CHR20x16x2
|
|
.endrepeat
|
|
|
|
.byte DL_JVB
|
|
.word dlist
|
|
|
|
; end of display list
|
|
|
|
.assert ((* >> 10) = (dlist >> 10)), error, "Display list crosses 1K boundary"
|
|
|
|
.end
|