MAIN.SRC  ·  SRC  ·  1.7 KB  ·  1989-10-01  ·  from PersonalComputing_Oct-1989
C
M 3
. start
D \pc.scn
B 3
L 4 10
P 1    -    DOSAMATIC     Run up to seven programs at a time!
L 4 12
P 2    -    MOVE          Updated, faster version of David Foster's program
L 4 14
P 3    -    QUBERT        Hard to beat version of the old favourite
L 4 16
P 4    -    STARGATE      Fast-action Defender clone
L 4 18
P 5    -    WIZZARD       Superb Pinball game
L 4 20
P 6    -    NEXT MENU     Select the next menu
L 4 22
P 7    -    QUIT          Return to Dos
; 
. loop
L 0 25
S 7
I 1 dosamatic
I 2 move
I 3 qubert
I 4 stargate
I 5 wizzard
I 6 next
I 7 end
; 
. dosamatic
C
T \dosamatc\dosamatc.doc
C
P To quit from this program press Esc then select the Exit option
N \dosamatc
R dosamatc.com
N \
G start
;
. move
C
T \move\move.doc
G start
;
. qubert
C
N \games
R qubert.com
N \
G start
;
. stargate
C
P To quit from this program you will need to reset your PC
R \games\stargate.exe
G start
;
. wizzard
C
P To quit from Wizzard press Esc
R \games\wizzard.com
G start
;
. next
D \pc.scn
B 3
L 35 10
P C Utilities
L 35 11
P ───────────
L 4 13
P 1    -    CB        Tidy up the format of your C source code
L 4 15
P 2    -    LUMP      Lump files together to save disc space (C source code)
L 4 17
P 3    -    UNLUMP    Unlump "lumped" files (C source code)
L 4 19
P 4    -    SWITCH    Select display parameters (C source code)
L 4 21
P 5    -    RETURN    Return to the main menu
; 
. loop1
L 0 25
S 5
I 1 cb
I 2 lump
I 3 unlump
I 4 switch
I 5 start
; 
. cb
C
T \cprogs\cb.doc
G next
;
. lump
C
T \cprogs\lump.c
G next
;
. unlump
C
T \cprogs\unlump.c
G next
;
. switch
C
T \cprogs\switch.c
G next
;
. end
C
X