summaryrefslogtreecommitdiff
path: root/macros/vc.asm
blob: 27cdb88b37db0a5c60395216cdf404c4ef5eacb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
vc_hook: MACRO
if DEF(_CRYSTAL11_VC)
.VC_\1::
endc
ENDM

vc_patch: MACRO
if DEF(_CRYSTAL11_VC)
	assert !DEF(CURRENT_VC_PATCH), "Already started a vc_patch"
CURRENT_VC_PATCH EQUS "\1"
.VC_{CURRENT_VC_PATCH}::
endc
ENDM

vc_patch_end: MACRO
if DEF(_CRYSTAL11_VC)
	assert DEF(CURRENT_VC_PATCH), "No vc_patch started"
.VC_{CURRENT_VC_PATCH}_End::
	PURGE CURRENT_VC_PATCH
endc
ENDM

vc_assert: MACRO
if DEF(_CRYSTAL11_VC)
	assert \#
endc
ENDM