Hi Tomas,
it appears that you have typed a single equal sign for the equation of the x component. This here works:
NDSolve[{y'[t] == -0.25 y[t] + (x[t])^2, x'[t] == -0.25 x[t] + y[t] - x[t] y[t], x[0] == 1, y[0] == 1}, {x, y}, {t, 0, 10}]
If you plot this you get
sols =NDSolve[{y'[t] == -0.25 y[t] + (x[t])^2, x'[t] == -0.25 x[t] + y[t] - x[t] y[t], x[0] == 1, y[0] == 1}, {x, y}, {t, 0, 10}]
and
Plot[{x[t], y[t]} /. sols, {t, 0, 10}]
I hope this helps.
Cheers,
M.