From 51476244ef31b7c2ec4710c524be4cb1cfff3559 Mon Sep 17 00:00:00 2001 From: "Haoran S. Diao" <0@hairydiode.xyz> Date: Mon, 1 Apr 2019 19:38:46 -0400 Subject: more comments --- conway.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/conway.c b/conway.c index db4dd0a..0fd733b 100644 --- a/conway.c +++ b/conway.c @@ -18,6 +18,8 @@ for (int j=0; j< 40; j++) { \ * *We use char because it's close enough to uint8_t w/o having to include the * standard into library. + * There's a glider stored in the first 9x9 bits. We assume that everything is + * zero'd out */ char grid[80][40] = {{0,0,2},{2,0,2},{0,2,2},0}; -- cgit v1.1