msbasic/defines_kim.s

33 lines
647 B
ArmAsm
Raw Normal View History

2008-10-17 07:42:00 +00:00
; configuration
2008-10-13 09:34:49 +00:00
CONFIG_11A := 1
2008-10-17 07:04:05 +00:00
CONFIG_MONCOUT_DESTROYS_Y := 1
2008-10-12 19:50:23 +00:00
CONFIG_NULL := 1
CONFIG_PRINT_CR := 1 ; print CR when line end reached
2008-10-18 07:41:34 +00:00
CONFIG_RAM := 1
2008-10-16 08:21:21 +00:00
CONFIG_ROR_WORKAROUND := 1
2008-10-17 07:04:05 +00:00
CONFIG_SAFE_NAMENOTFOUND := 1
2008-10-17 06:21:43 +00:00
CONFIG_SCRTCH_ORDER := 2
2008-10-12 19:50:23 +00:00
2008-10-17 07:42:00 +00:00
; zero page
2008-10-18 21:20:15 +00:00
ZP_START1 = $00
ZP_START2 = $15
ZP_START3 = $0A
ZP_START4 = $63
2008-10-12 19:50:23 +00:00
2008-10-18 05:37:45 +00:00
; constants
STACK_TOP := $FC
SPACE_FOR_GOSUB := $36
NULL_MAX := $F2 ; probably different in original version; the image I have seems to be modified; see PDF
2008-10-18 12:33:14 +00:00
WIDTH := 72
2008-10-18 12:49:03 +00:00
WIDTH2 := 56
2008-10-18 05:37:45 +00:00
2008-10-17 07:42:00 +00:00
; magic memory locations
2008-10-07 04:44:27 +00:00
L1800 := $1800
L1873 := $1873
2008-10-17 07:42:00 +00:00
; monitor functions
2008-10-07 04:44:27 +00:00
MONRDKEY := $1E5A
MONCOUT := $1EA0