I was wondering if it's possible to redifine the size of an array or simply, create a new one through the Code Segment. Here's what I have so far:
.DATA
prompt1 db "Please enter a number which will ressemble the N of the array",13,10,'$'
value db ?
.CODE
DisplayIO proc
lea DX, prompt1
mov AH, 09h
int 21h
mov AH, 08h
int 21h
ret
DisplayIO endP
call DisplayIO
sub AL, 30h
mov value, AH
What I'm trying to do, is basically create an array with the size of value
As Aki Suihkonen said, allocating memory is the solution. I developed next example with EMU8086: it asks the user for a number (the array size in bytes), then creates an array of that size. For example, enter 20 for an array of 20 bytes, or enter 40 for an array of 20 words. Here is the code (with lots of comments to help you understand) :
Some notes :
ES
must be used to access it.