Displaying 1 result from an estimated 1 matches for "conditionk".
Did you mean:
conditions
2019 Apr 22
1
Bug/limitation: allowoptions (for label), implicit (for automated)
...only the command supplied at the prompt make sense to be blocked by IMPLICIT 0.
*Example (default) current*
default kernelX OPT
# OPT not passed with allowoptions 0 (fully blocked with IMPLICIT 0)
default labelX OPT
# OPT currently passed regardless of allowoptions
*Example (ifcpu) current*
label conditionK
com32 ifcpu.c32
append 64 -- kernelX OPT1 -- kernelX OPT2
# same as above: OPT not passed with allowoptions 0 (fully blocked with IMPLICIT 0)
label conditionL
com32 ifcpu.c32
append 64 -- labelX OPT1 -- labelX OPT2
# same as above: OPT currently passed regardless of allowoptions
*Example (prompt)...