Parses an AsmTypePrefix
Note that in the following grammar definition the first identifier must be "near", "far", "word", "dword", or "qword". The second identifier must be "ptr".
$(GRAMMAR $(RULEDEF asmTypePrefix): $(LITERAL Identifier) $(LITERAL Identifier)? | $(LITERAL 'byte') $(LITERAL Identifier)? | $(LITERAL 'short') $(LITERAL Identifier)? | $(LITERAL 'int') $(LITERAL Identifier)? | $(LITERAL 'float') $(LITERAL Identifier)? | $(LITERAL 'double') $(LITERAL Identifier)? | $(LITERAL 'real') $(LITERAL Identifier)? ;)
See Implementation
Parses an AsmTypePrefix
Note that in the following grammar definition the first identifier must be "near", "far", "word", "dword", or "qword". The second identifier must be "ptr".
$(GRAMMAR $(RULEDEF asmTypePrefix): $(LITERAL Identifier) $(LITERAL Identifier)? | $(LITERAL 'byte') $(LITERAL Identifier)? | $(LITERAL 'short') $(LITERAL Identifier)? | $(LITERAL 'int') $(LITERAL Identifier)? | $(LITERAL 'float') $(LITERAL Identifier)? | $(LITERAL 'double') $(LITERAL Identifier)? | $(LITERAL 'real') $(LITERAL Identifier)? ;)