Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 438 Bytes

A2217.md

File metadata and controls

34 lines (23 loc) · 438 Bytes

Asmc Macro Assembler Reference

ASMC Nonfatal Error A2217

must be public or external

An alternate symbol was not public or external.

Example

The code sample below would generate A2217 if the line:

    public alternate

were not present.

	.686
	.model	flat

	extrn	primary(alternate):near

	.code

	public	alternate
    alternate:
	ret

	end

* ML 8 compatible error

See Also

ASMC Error Messages