Readme
Readme
0 README File
========================
Disk Contents
=============
Your Valkyrie diskette should contain the following files:
Quick Start
===========
If you're anxious to get going, here are the quick instructions
for running Valkyrie. Assuming your application is named
MENU.EXE:
C>VPP MENU
C>V MENU
V will ask for your serial number. Type it in from the inside
cover of your manual, and then sit back and watch it work.
# COMMENT(S)
SOURCE MODULE1
PROC PROC1
PROC PROC2
SOURCE MODULE2
PROC PROC3
PROC PROC4
etc.
There are two types of statements in the .MOD file, SOURCE and
PROC. Lines starting with a pound sign ('#') are comments, and
blank lines are ignored.
SOURCE MAILLIST
PROC MAILLIST
PROC STARTUP
PROC MAINMENU
PROC SHUTDOWN
PROC REPORTS
PROC REPT1
PROC REPT2
PROC REPT3
SOURCE VIDEO
PROC VIDEO
PROC VINIT
PROC VMODE
This .MOD file will cause V.EXE to create two source files,
MAILLIST.SRC and VIDEO.SRC. MAILLIST.SRC will contain the
procedures MAILLIST through REPT3. VIDEO.SRC will contain the
VIDEO, VINIT, and VMODE functions. Notice that the MAILLIST
procedure is still listed under the SOURCE MAILLIST statement.
All procedures to be decompiled must be named in the .MOD file
with PROC statements. You could also delete PROC statements if
you didn't want particular functions to be decompiled. You
cannot, however, change the PROC names.
Now suppose that you want the report functions to be placed into
their own source file. You simply add a SOURCE REPORTS statement
to the .MOD file before running V.EXE. Also, suppose you want
the video functions placed into a file named VLIB.SRC. The
edited MAILLIST.MOD file should look like this:
SOURCE MAILLIST
PROC MAILLIST
PROC STARTUP
PROC MAINMENU
PROC SHUTDOWN
SOURCE REPORTS <== added
PROC REPORTS
PROC REPT1
PROC REPT2
PROC REPT3
SOURCE VLIB <== changed
PROC VIDEO
PROC VINIT
PROC VMODE
Simply copy (or rename) the EXE file to the original name and
then run VPP again. It will now process the file correctly, with
no warnings.
C>VPP MENU
will produce both MENU.RIP and MENU.OVV. Recover the code with
the command:
C>V MENU
You may now delete both MENU.RIP and MENU.OVV. Your source code
will be in MENU.SRC (and any other .SRC files created by V).