mirror of
https://frontier.innolan.net/github/AmigaExamples.git
synced 2025-11-23 14:05:35 +00:00
12 lines
416 B
OpenEdge ABL
12 lines
416 B
OpenEdge ABL
VPOSRLOFBIT equ 15
|
|
LVL3_INT_VECTOR equ $6c
|
|
SCREEN_WIDTH equ 320
|
|
SCREEN_HEIGHT equ 256
|
|
SCREEN_WIDTH_BYTES equ (SCREEN_WIDTH/8)
|
|
SCREEN_BIT_DEPTH equ 3 ; 3 bitplanes per playfield
|
|
SCREEN_RES equ 8 ; 8=lo resolution, 4=hi resolution
|
|
RASTER_X_START equ $81 ; hard coded coordinates from hardware manual
|
|
RASTER_Y_START equ $2c
|
|
RASTER_X_STOP equ RASTER_X_START+SCREEN_WIDTH
|
|
RASTER_Y_STOP equ RASTER_Y_START+256
|