◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── Syntax: @Model See also: Table of Memory Models, .MODEL, @CodeSize, @DataSize, @Interface Description: A predefined equate that returns one of the following values, depending on memory model previously defined with the .MODEL directive: Value Memory model 1 TINY 2 SMALL 3 COMPACT 4 MEDIUM 5 LARGE 6 HUGE 7 FLAT The @Model equate is the only way of identifying the TINY and FLAT memory models. This equate is often used in conditional assembly blocks. The @Model equate is defined only after a .MODEL directive. -♦-