public inbox for linux-8086@vger.kernel.org
 help / color / mirror / Atom feed
* ELKS port of Adventure - help needed :)
@ 2002-12-10 13:07 Paul Nasrat
  2002-12-11  8:19 ` Phil Goembel
  0 siblings, 1 reply; 16+ messages in thread
From: Paul Nasrat @ 2002-12-10 13:07 UTC (permalink / raw)
  To: linux-8086

I grabbed the src of adventure

wget -r -l 1 -nH --cut-dirs=5 \ 
http://www.cise.ufl.edu/class/cop4600/minix/src/commands/advent/

make clean to get rid of the binaries.

I've fixed up the make file which compiles. (patch below)

Install the dat files to /usr/lib/advent and use elksemu to run
adventure

[paul@bender advent]$ file advent
advent: Linux-8086 executable not stripped
[paul@bender advent]$ ./advent
<Generic Adventure -- Version:7.0, July 1994>
...

The game will accept y/n for the first input for instructions but the
word processing is b0rked.

> north
I didn't understand the word "north"

I imagine it's something fixable in the src's, I'd like to get it
running though as I'm going to a lan party with only an 8086 laptop to
take :)

Any adventure hackers got any clue

Paul

--- Makefile.old        1997-09-22 15:46:59.000000000 +0100
+++ Makefile    2002-12-10 12:35:50.000000000 +0000
@@ -9,10 +9,11 @@
 #
 # On Minix, use '-m' in CFLAGS and '-i' in LDFLAGS.
  
-CC     = mcc
-CFLAGS = -D_POSIX_SOURCE
+CC     = bcc
+GCC    = gcc
+LD     = ld86
+CFLAGS =  -0
 LDFLAGS        =
-GCC = /usr/local/bin/gcc
  
 OBJS   = advent.o database.o english.o initial.o itverb.o score.o\
        travel.o turn.o utility.o verb.o vocab.o
@@ -22,7 +23,7 @@
 all:   $(DAT) advent
  
 advent:        $(OBJS)
-       $(CC) $(LDFLAGS) -o advent -S 16kw $(OBJS)
+       $(CC) $(LDFLAGS) -o advent $(OBJS)
  
 setup: setup.c advent.h
        $(GCC) -o setup setup.c


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2002-12-12 21:15 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-12-10 13:07 ELKS port of Adventure - help needed :) Paul Nasrat
2002-12-11  8:19 ` Phil Goembel
2002-12-11 21:27   ` Richard Wallman
2002-12-11 22:22     ` Richard Wallman
2002-12-11 22:46       ` Richard Wallman
2002-12-11 22:51       ` Paul Nasrat
2002-12-11 23:59       ` Phil Goembel
2002-12-12  7:39         ` Paul Nasrat
2002-12-12  8:18           ` Paul Nasrat
2002-12-12 19:11         ` Adventure - the answer to what went wrong? Richard Wallman
2002-12-12 20:21           ` Harry Kalogirou
2002-12-12 20:52           ` Alan Cox
2002-12-12 20:27             ` Dan Olson
2002-12-12 20:29               ` Harry Kalogirou
2002-12-12 20:41                 ` Dan Olson
2002-12-12 21:15               ` Alan Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox