For anyone interested, a very approximate normally distributed randoms can be generated by multiplying two random numbers:
NRND = (RND*2-1)*(RND*2-1)
This will give values between -1 and 1, and if you plot them in a histogram, they will be mostly clustered around 0.
Not great, but it's fast, good for introducing a little natural variability to simulations.