Files
MZ80A_RFS/software/asm/monitor_80c_SA1510.asm
Philip Smart 3c842d6602 First push
2019-10-25 19:57:02 +01:00

9 lines
420 B
NASM

; Configurable parameters.
COLW: EQU 80 ; Width of the display screen (ie. columns).
ROW: EQU 25 ; Number of rows on display screen.
SCRNSZ: EQU COLW * ROW ; Total size, in bytes, of the screen display area.
SCRLW: EQU COLW / 8 ; Number of 8 byte regions in a line for hardware scroll.
MODE80C:EQU 1
INCLUDE "sa1510.asm"