main: true primordial soup

This commit is contained in:
2026-03-18 09:33:58 +00:00
parent 7ab65da761
commit 07a47952c3

View File

@@ -21,7 +21,7 @@ void simulation_soup(simulation_t *sim)
{
for (size_t i = 0; i < sizeof(sim->memory); ++i)
{
sim->memory[i] = (rand() % 82) + 43;
sim->memory[i] = rand() % 255;
}
}