Hope this is not a question too simple/confus but I could never find out how I know what addresses to pick. I know there are a lot but how do I know an address that guaranteed isn't used by any other program? Let's say i am writing a simple NASM program and need to save 32 individual bytes in storage, how do I know where to save them? I need them to be random access, so the 15th one would be address 0 + 15
Or is this a horrible way to store data in memory? Trying to use as few external libraries as possible - how would I go about storing such data?