I am studying asm, and I know that if I would like to take a number from keyboard, I can simple do this:
inputarea db 3 DUP(' '),'$' mov ah,0Ah mov dx,offset inputarea int 21h In this case, I can write symbols until I reach 255. But there is a db(data byte) type, so in this case I can only write max 3 numbers which is correct to asm to execute it (123 , 100 and so on...). But If have Data Word, or DD types, how many symbols I can write which can be executed?
Hint: for example, If I have type 'data byte', so this will exlude memory of 1 byte. And there is able to store only 3 numbers. What about others types?