msbasic/defines_kim.s

33 lines
644 B
ArmAsm
Raw Normal View History

2008-10-17 07:42:00 +00:00
; configuration
2008-10-12 19:50:23 +00:00
CONFIG_11 := 1
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-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 03:31:14 +00:00
ZP_START0 = $00
2008-10-18 05:16:33 +00:00
ZP_START0A = $15
2008-10-18 05:03:58 +00:00
ZP_START1 = $0A
2008-10-18 05:08:43 +00:00
ZP_START2 = $63
2008-10-12 19:50:23 +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
2008-10-17 07:42:00 +00:00
; constants
2008-10-09 08:23:42 +00:00
STACK_TOP := $FC
2008-10-07 04:44:27 +00:00
SPACE_FOR_GOSUB := $36
NULL_MAX := $F2 ; probably different in original version; the image I have seems to be modified; see PDF
2008-10-17 07:49:43 +00:00
CRLF_1 := CR
CRLF_2 := LF
2008-10-07 04:44:27 +00:00