mirror of
https://github.com/uffejakobsen/acme.git
synced 2025-08-09 11:25:03 +00:00
added more constants to vdc.a
git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@20 4df02467-bbd4-4a76-a152-e7ce94205b78
This commit is contained in:
@@ -3,7 +3,31 @@
|
|||||||
!ifdef lib_cbm_c128_vdc_a !eof
|
!ifdef lib_cbm_c128_vdc_a !eof
|
||||||
lib_cbm_c128_vdc_a = 1
|
lib_cbm_c128_vdc_a = 1
|
||||||
|
|
||||||
; access macros
|
; there are three different versions of the C128's Video Display Controller:
|
||||||
|
; v0: VDC 8563 R7A in C128 and C128-D
|
||||||
|
; v1: VDC 8563 R8/R9 in C128 and C128-D
|
||||||
|
; v2: VDC 8568 in C128-DCR
|
||||||
|
; 8563 and 8568 have different pinouts, so do not try to use one of them on a
|
||||||
|
; board intended for the other!
|
||||||
|
|
||||||
|
|
||||||
|
; hardware differences:
|
||||||
|
|
||||||
|
; the 8563 uses external circuitry to convert RGBIHV to monochrome/luminance.
|
||||||
|
; the 8568 does a part of this internally and therefore needs fewer external
|
||||||
|
; components.
|
||||||
|
|
||||||
|
; the 8568 has an additional register (r37) to change sync polarities.
|
||||||
|
|
||||||
|
|
||||||
|
; software differences:
|
||||||
|
|
||||||
|
; the horizontal scroll bits of r25 differ between v0 and v1/v2: in v0, set these
|
||||||
|
; bits to zero. in v1/v2, set these bits to the same value as bits4-7 of r22.
|
||||||
|
; the additional register r37 can be ignored (as the C128 kernal does).
|
||||||
|
|
||||||
|
|
||||||
|
; access macros:
|
||||||
|
|
||||||
!macro vdc_lda {
|
!macro vdc_lda {
|
||||||
- bit vdc_state
|
- bit vdc_state
|
||||||
@@ -41,7 +65,8 @@ lib_cbm_c128_vdc_a = 1
|
|||||||
sty vdc_data
|
sty vdc_data
|
||||||
}
|
}
|
||||||
|
|
||||||
; color codes
|
|
||||||
|
; color codes:
|
||||||
|
|
||||||
; These are the colors officially available on the C128 - the same names as if
|
; These are the colors officially available on the C128 - the same names as if
|
||||||
; using a C64's VIC, but different codes of course.
|
; using a C64's VIC, but different codes of course.
|
||||||
@@ -98,6 +123,7 @@ vdccolor_DGRAY = %...# ; "light black" => "dark grey"
|
|||||||
vdccolor_LGRAY = %###. ; "dark white" => "light grey"
|
vdccolor_LGRAY = %###. ; "dark white" => "light grey"
|
||||||
vdccolor_WHITE = %#### ; "light white" => "white"
|
vdccolor_WHITE = %#### ; "light white" => "white"
|
||||||
|
|
||||||
|
|
||||||
; attribute flags (2rufRGBI)
|
; attribute flags (2rufRGBI)
|
||||||
vdcattr_2ND = %#....... ; second character set
|
vdcattr_2ND = %#....... ; second character set
|
||||||
vdcattr_REVS = %.#...... ; reverse mode
|
vdcattr_REVS = %.#...... ; reverse mode
|
||||||
@@ -108,52 +134,90 @@ vdcattr_G = %.....#.. ; green
|
|||||||
vdcattr_B = %......#. ; blue
|
vdcattr_B = %......#. ; blue
|
||||||
vdcattr_I = %.......# ; intensity
|
vdcattr_I = %.......# ; intensity
|
||||||
|
|
||||||
; direct registers
|
|
||||||
vdc_state = $d600 ; 1b "ready", 1b "lightpen", 1b "rescan", 5b "version"
|
|
||||||
vdc_reg = $d600
|
|
||||||
vdc_data = $d601
|
|
||||||
|
|
||||||
; indirect registers
|
; direct registers
|
||||||
vdcr_htotal = $00 ; card columns (total), minus one
|
vdc_state = $d600 ; READING this location yields status flags:
|
||||||
vdcr_columns = $01 ; card columns actually displayed
|
vdcstate_READY = %#....... ; RAM access is finished
|
||||||
vdcr_hdisp = $01
|
vdcstate_LIGHTPEN = %.#...... ; light pen has been activated
|
||||||
vdcr_hsync_pos = $02 ; card to send horizontal sync in
|
vdcstate_IN_BORDER = %..#..... ; electron beam is in upper or lower border
|
||||||
vdcr_syncwidth = $03 ; 4b vertical, 4b horizontal
|
vdcstate_VERSIONMASK = %...##### ; vdc version (0, 1 or 2)
|
||||||
vdcr_vtotal = $04 ; card lines (total), minus one
|
vdc_reg = $d600 ; WRITING this location selects an indirect register
|
||||||
vdcr_vadjust = $05 ; additionally scan lines
|
vdc_data = $d601 ; data of selected indirect register
|
||||||
vdcr_lines = $06 ; card lines actually displayed
|
|
||||||
vdcr_vdisp = $06
|
|
||||||
vdcr_vsync_pos = $07 ; card line to send vertical sync in
|
; indirect registers (default value, see $e179 in C128 kernal)
|
||||||
vdcr_interlace = $08 ; interlace mode
|
vdcr_htotal = $00 ; 126 (127 for PAL, depends on kernal version) characters per line, minus one
|
||||||
vdcr_cardheight = $09 ; 5b total, minus one
|
vdcr_columns = $01 ; 80 characters per line, actually displayed
|
||||||
vdcr_crsr_start = $0a ; 2b mode, 5b scanline
|
vdcr_hdisp = $01
|
||||||
vdcr_crsr_end = $0b ; 5b scanline
|
vdcr_hsync_pos = $02 ; 102 character position to send horizontal sync in
|
||||||
vdcr_display_hi = $0c ; RAM address of display buffer
|
vdcr_syncwidth = $03 ; $49 4b vertical, 4b horizontal
|
||||||
vdcr_display_lo = $0d
|
vdcr_vtotal = $04 ; 32 (39 or 38 for PAL, depends on kernal version) character lines per screen, minus one
|
||||||
vdcr_crsr_hi = $0e ; RAM address of cursor
|
vdcr_vadjust = $05 ; 0 additional scan lines per screen (to fix timings)
|
||||||
vdcr_crsr_lo = $0f
|
vdcr_lines = $06 ; 25 character lines per screen, actually displayed
|
||||||
vdcr_lp_y = $10 ; y position of light pen
|
vdcr_vdisp = $06
|
||||||
vdcr_lp_x = $11 ; x position
|
vdcr_vsync_pos = $07 ; 29 (32 for PAL) character line to send vertical sync in
|
||||||
vdcr_ram_hi = $12 ; RAM address of register $1f
|
vdcr_interlace = $08 ; 0 interlace mode (0=2=std, 1=jitter, 3=interlace)
|
||||||
vdcr_ram_lo = $13
|
vdcr_charheight_total = $09 ; 7 5b total, minus one
|
||||||
vdcr_attr_hi = $14 ; RAM address of attribute buffer
|
vdcr_crsr_start = $0a ; $20 2b mode, 5b scanline
|
||||||
vdcr_attr_lo = $15
|
vdcr_CRSRSTART_MODE_MASK = %.##.....
|
||||||
vdcr_cardwidth_charwidth = $16; 4b total, 4b displayed
|
; vdcr_CRSRSTART_MODE_FIXED = %........ ; fixed cursor
|
||||||
vdcr_charheight = $17 ; 5b displayed, minus one
|
vdcr_CRSRSTART_MODE_OFF = %..#..... ; invisible
|
||||||
vdcr_control_v = $18 ; vertical scroll and much other stuff
|
vdcr_CRSRSTART_MODE_FAST = %.#...... ; flashing with 1/16 of refresh freq
|
||||||
vdcr_control_h = $19 ; horizontal scroll and much other stuff
|
vdcr_CRSRSTART_MODE_SLOW = %.##..... ; flashing with 1/32 of refresh freq
|
||||||
vdcr_color = $1a ; 4b foreground, 4b background
|
vdcr_crsr_end = $0b ; 7 5b scanline
|
||||||
vdcr_row_inc = $1b ; Address increment per row
|
vdcr_display_hi = $0c ; 0 RAM address of display buffer
|
||||||
vdcr_charset = $1c ; 3b charset pointer, 1b RAM type, 4b unused
|
vdcr_display_lo = $0d ; 0
|
||||||
vdcr_underline = $1d ; 5b scanline
|
vdcr_crsr_hi = $0e ; 0 RAM address of cursor
|
||||||
vdcr_cycles = $1e ; number of write- or copy-cycles. 0 means 256.
|
vdcr_crsr_lo = $0f ; 0
|
||||||
vdcr_access = $1f ; RAM content of address r$12/13
|
vdcr_lp_y = $10 ; -- y position of light pen (lines, plus 1)
|
||||||
vdcr_source_hi = $20 ; RAM address of cycle start
|
vdcr_lp_x = $11 ; -- x position if light pen (characters, plus 8)
|
||||||
vdcr_source_lo = $21
|
vdcr_ram_hi = $12 ; -- RAM address of register $1f
|
||||||
vdcr_enable_start = $22 ; column to enable display in
|
vdcr_ram_lo = $13 ; --
|
||||||
vdcr_enable_end = $23 ; column to disable display in
|
vdcr_attr_hi = $14 ; $08 RAM address of attribute buffer
|
||||||
vdcr_dram_refresh = $24 ; RAM refresh rate
|
vdcr_attr_lo = $15 ; $00
|
||||||
vdcr_sync_polarity = $25 ; only in type 2 VDCs
|
vdcr_charwidth = $16 ; $78 4b total minus one, 4b displayed minus one
|
||||||
|
vdcr_charheight_disp = $17 ; 8 5b displayed, minus one
|
||||||
|
vdcr_control_v = $18 ; $20 vertical scroll and much other stuff
|
||||||
|
vdcr_CONTROLV_BLOCKMODE_MASK = %#.......
|
||||||
|
; vdcr_CONTROLV_BLOCKMODE_WRITE = %........
|
||||||
|
vdcr_CONTROLV_BLOCKMODE_COPY = %#.......
|
||||||
|
vdcr_CONTROLV_REVERSESCREEN = %.#......
|
||||||
|
vdcr_CONTROLV_FLASHFREQ_MASK = %..#.....
|
||||||
|
; vdcr_CONTROLV_FLASHFREQ_FAST = %........
|
||||||
|
vdcr_CONTROLV_FLASHFREQ_SLOW = %..#.....
|
||||||
|
vdcr_CONTROLV_UPSCROLL_MASK = %...#####
|
||||||
|
vdcr_control_h = $19 ; $47 ($40 for vdc version 0) horizontal scroll and much other stuff
|
||||||
|
vdcr_CONTROLH_MODE_MASK = %#.......
|
||||||
|
; vdcr_CONTROLH_MODE_TEXT = %........
|
||||||
|
vdcr_CONTROLH_MODE_BITMAP = %#.......
|
||||||
|
vdcr_CONTROLH_ATTRIBUTES_MASK = %.#......
|
||||||
|
; vdcr_CONTROLH_ATTRIBUTES_OFF = %........
|
||||||
|
vdcr_CONTROLH_ATTRIBUTES_ON = %.#......
|
||||||
|
vdcr_CONTROLH_SEMIGRAPHICS = %..#.....
|
||||||
|
vdcr_CONTROLH_PIXELWIDTH_MASK = %...#....
|
||||||
|
; vdcr_CONTROLH_PIXELWIDTH_NARROW = %........
|
||||||
|
vdcr_CONTROLH_PIXELWIDTH_WIDE = %...#....
|
||||||
|
vdcr_CONTROLH_LEFTSCROLL_MASK = %....####
|
||||||
|
vdcr_color = $1a ; $f0 4b foreground, 4b background
|
||||||
|
vdcr_COLOR_FOREGROUND_MASK = %####.... ; only used if attributes are off
|
||||||
|
vdcr_COLOR_BACKGROUND_MASK = %....####
|
||||||
|
vdcr_row_inc = $1b ; 0 address increment per row
|
||||||
|
vdcr_charset = $1c ; $20 3b charset pointer, 1b RAM type, 4b unused
|
||||||
|
vdcr_CHARSET_ADRESS_MASK = %###.....
|
||||||
|
vdcr_CHARSET_RAMTYPE_MASK = %...#....
|
||||||
|
; vdcr_CHARSET_RAMTYPE_16K = %........
|
||||||
|
vdcr_CHARSET_RAMTYPE_64K = %...#....
|
||||||
|
vdcr_underline = $1d ; 7 5b scanline
|
||||||
|
vdcr_cycles = $1e ; -- number of write- or copy-cycles. 0 means 256.
|
||||||
|
vdcr_access = $1f ; -- RAM content of address r$12/13
|
||||||
|
vdcr_source_hi = $20 ; -- RAM address of cycle start
|
||||||
|
vdcr_source_lo = $21 ; --
|
||||||
|
vdcr_enable_start = $22 ; 125 column to enable display in
|
||||||
|
vdcr_enable_end = $23 ; 100 column to disable display in
|
||||||
|
vdcr_dram_refresh = $24 ; 5 RAM refresh rate (lower 4 bits)
|
||||||
|
vdcr_sync_polarity = $25 ; -- only in VDC 8568
|
||||||
|
vdcr_HSYNC_POLARITY = %#.......
|
||||||
|
vdcr_VSYNC_POLARITY = %.#......
|
||||||
|
|
||||||
; the c128 ROMs contain look-up tables to convert vic color values to vdc color
|
; the c128 ROMs contain look-up tables to convert vic color values to vdc color
|
||||||
; values and vice-versa:
|
; values and vice-versa:
|
||||||
|
Reference in New Issue
Block a user