~hangman8086-devs/hangman8086/trunk

3 by Fabien LOISON
* Makefile and README added
1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
;;      __   __  _______  __    _  _______  __   __  _______  __    _       ;;
3
;;     |  | |  ||   _   ||  |  | ||       ||  |_|  ||   _   ||  |  | |      ;;
4
;;     |  |_|  ||  |_|  ||   |_| ||    ___||       ||  |_|  ||   |_| |      ;;
5
;;     |       ||       ||       ||   | __ |       ||       ||       |      ;;
6
;;     |       ||       ||  _    ||   ||  ||       ||       ||  _    |      ;;
7
;;     |   _   ||   _   || | |   ||   |_| || ||_|| ||   _   || | |   |      ;;
8
;;     |__| |__||__| |__||_|  |__||_______||_|   |_||__| |__||_|  |__|      ;;
9
;;                                                                          ;;
10
;;                                                                          ;;
11
;;  HANGMAN - An implementation of the Hang Man game in assembly (Emu8086)  ;;
12
;;                                                                          ;;
13
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
14
15
16
COMPILING AND LAUNCHING THE PROGRAM
17
18
    GNU/LINUX:
19
20
        For compiling and launching HANGMAN on Linux, you will have to install
21
            * WINE <http://www.winehq.org/>
22
            * DOSBOX <http://www.dosbox.com/>
23
24
        Then, go to the source directory and type the following command for
25
        getting the build environment (an internet connexion is required):
26
27
            make buildenv
28
29
        Next just launch the make command for building the program:
30
31
            make
32
33
        For launching HANGMAN after the compilation, just run the generated
34
        hangman.sh script:
35
36
            ./hangman.sh
37
38
39
    WINDOWS:
40
41
        Open the main.asm file with emu8086.exe <http://www.emu8086.com/>
10.1.1 by Fabien LOISON
* Scores implementation started
42
        and click on the build button on the GUI.
3 by Fabien LOISON
* Makefile and README added
43
44