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