TOTRACKBIT equ 0x3 ; byte 3: bit location of pointer within byte
-
+ ifdef SLOW_VERSION
+ messg "hello this is the slow version"
+ endif
+
+ ifndef SLOW_VERSION
+ messg "hello this is the fast version"
+ endif
+
+ ifdef SLOW_VERSION
+ messg "with an if"
+ else
+ messg "and an else"
+ endif
org 0
goto initialise
TOTRACKBIT equ 0x3 ; byte 3: bit location of pointer within byte
-
+ ifdef SLOW_VERSION
+ messg "hello this is the slow version"
+ endif
+
+ ifndef SLOW_VERSION
+ messg "hello this is the fast version"
+ endif
+
+ ifdef SLOW_VERSION
+ messg "with an if"
+ else
+ messg "and an else"
+ endif
org 0
goto initialise