Error A2103

I make a assembly program on masm 5.1 and it gives me the error "a2103" segment exceeded 64k i read on internet that i have to brak the code into peaces and run it but what if i need it all together is there any hope i can make it that way??? any masm update or upgrade or something like that.
Ill wait your answer soon
Thank You for your attention.

Comments

  • : I make a assembly program on masm 5.1 and it gives me the error
    : "a2103" segment exceeded 64k i read on internet that i have to brak
    : the code into peaces and run it but what if i need it all together
    : is there any hope i can make it that way??? any masm update or
    : upgrade or something like that.
    : Ill wait your answer soon
    : Thank You for your attention.

    Is there other .model beisdes small, large and huge or maybe other value fot he .stack instead 100h.
    This is urgen tplease
  • : : I make a assembly program on masm 5.1 and it gives me the error
    : : "a2103" segment exceeded 64k i read on internet that i have to brak
    : : the code into peaces and run it but what if i need it all together
    : : is there any hope i can make it that way??? any masm update or
    : : upgrade or something like that.
    : : Ill wait your answer soon
    : : Thank You for your attention.
    :
    : Is there other .model beisdes small, large and huge or maybe other
    : value fot he .stack instead 100h.
    : This is urgen tplease

    Hmm, post the structure of your code, if the code is to long.

    Maybe break up your code in multiple segments.
  • [blue]
    I doubt that you would write 64 K of code in MASM.
    Did you do anything like this?

    MyArray db 64000 dup (0)

    If you did - use dynamic allocation of memory instead of this.
    [/blue]
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories