REAME


FILES:
	Makefile
		Makefile for game2c GAME III to C source.
	game2c.c
		GAME III to C source.
	translated_game.c
		House keeping C source for translated C source.
		see TRANSLATE section.
	translated_game_LE.c (EXPERIMENTAL)
		House keeping C source for translated C source (for LittleEndian).
		see TRANSLATE section.

COMPILE:
	make
	OR
	cc game2c.c -o game2c	# build game2c

TRANSLATE
	1. translate GAME III to C by game2c
	2. compile translated C by C-compiler
	3. run object.

	./game2c pi.gt >translated_game.gc	# printout GAME III source that translating
	cc -o pi translated_game.c			# translated_game.gc is included by translated_game.c. 
	./pi

	If GAME III source for LittleEndian(GAME80,GAME-MZ,...), use translated_game_LC.c.
	cc -o pi translated_game_LC.c		# translated_game.gc is included by translated_game_LC.c. 

TEST:
	make test

---
Copyright (c) 2017, k_mia
Licence: BSD 2-Clause License
