FIX: ML Fails When PAGE Directive Has Invalid ValueLast reviewed: September 16, 1997Article ID: Q94913 |
6.00 6.00a 6.00b 6.10 6.10a | 6.00 6.00a 6.00b
MS-DOS | OS/2kbtool kbfixlist kbbuglist The information in this article applies to:
SYMPTOMSAn attempt to assemble an application fails and the assembler generates the following message:
error A2156: constant value out of rangeIf you assemble the application and request a listing file, the assembler generates a very large listing file or it generates the following message:
DOSXNT : fatal error DX1020: unhandled exception: General protection fault; contact Microsoft Support Services CAUSEThe application contains a PAGE directive and the length or width values are outside the range of valid values.
RESOLUTIONModify the PAGE directive so that the length parameter is between 10 and 255 lines and the width parameter is between 60 and 255 characters.
STATUSMicrosoft has confirmed this to be a problem in MASM versions 6.0, 6.0a, 6.0b, 6.1, and 6.1a. This problem was corrected in MASM for MS-DOS version 6.11.
MORE INFORMATIONThe following code can be used to demonstrate the problem.
Sample Code; Assemble options needed: /c /Fl PAGE 10, 30 .MODEL small .STACK 4096 .CODE start: mov ax, 4C00h int 21hEND start
|
Additional reference words: 6.00 6.00a 6.00b 6.10 6.10a buglist6.00a
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |