Fill a block of memory from the ADC and hash it with MD5 or the like. The noise level of the ADC just determines the size of the block you need, but with cryptographic hashes in general changing a single bit on the input on average changes half the bits on the output, so it doesn't require much in the way of randomness to generate good seed. (I assume this is to seed an RNG to be used later.)
Edit: 100 random bits out of 8192 16-bit samples, where there are up to 512 random LSBs would give 2859462363045362175889689804776516690968873940358319686157275755047898300652764867714064617203401346847080320 possible random combinations, so still plenty to seed any RNG (including cryptographic ones).