Re: Array initializing in MASM
arargh405NOSPAM_at_NOW.AT.arargh.com
Date: 05/29/04
- Previous message: Charles A. Crayne: "Re: Array initializing in MASM"
- In reply to: José: "Re: Array initializing in MASM"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Sat, 29 May 2004 20:43:06 +0000 (UTC)
On Sat, 29 May 2004 18:31:47 +0000 (UTC), "José" <no@email.com> wrote:
>> ToLowerChars db 00h
>> db 01h
>> db 03h
>> ...
>>
>> .... ought to work. Or any number of items you want on a line - don't
>> put a comma after the last item on a line... I think you're coming up
>> against a "maximum line length" rather than a maximum data
>> allocation...
>
>Thank you for the tip, but still I can't make it work.
>Following your way it only works up to 160 elements.
>When I set the 161th byte (I have to initialize 256 bytes) I get the
>following error message:
>
>Microsoft (R) Macro Assembler Version 6.14.8444
>Copyright (C) Microsoft Corp 1981-1997. All rights reserved.
>
> Assembling: Search1.asm
>Search1.asm(167) : error A2006: undefined symbol : A0h
Notice that it says "undefined symbol"? Nothing about a number.
Try: 0A0h ; thats: Zero A zero h
>
>I wonder is there is some MASM configuration that limits it to 160
>elements.
Only that you didn't RFTM.
-- Arargh405 at [drop the 'http://www.' from ->] http://www.arargh.com BCET Basic Compiler Page: http://www.arargh.com/basic/index.html To reply by email, remove the garbage from the reply address.
- Previous message: Charles A. Crayne: "Re: Array initializing in MASM"
- In reply to: José: "Re: Array initializing in MASM"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|