15 (668B)
1 2 3 How big was the game? 4 ------------------ 5 6 % wc -l * 7 20 Makefile 8 410 game.S 9 127 run 10 123 mapgen.c 11 17 pp.c 12 697 total 13 14 game.S: Is the main logic for the game, 15 it handles printing, moving and 16 other such tasks. 17 18 mapgen.c: This runs at the start of every 19 game, it generates asm that 20 needs to be assembled and 21 then linked with game.S. 22 23 run: This is a shell script, its job is 24 to call mapgen, link the exec, 25 and put the terminal in raw 26 mode. It also prints the opening 27 dialog and starts the music. 28 29 pp.c Pretty printer used to make the 30 opening nicer,