16 | * 100% Public Domain
17 | */
18 |
19 |
20 | #ifndef _SHA1_H_
21 | #define _SHA1_H_
22 |
23 | #define SHA1_BLOCK_LENGTH 64
24 | #define SHA1_DIGEST_LENGTH 20
25 |
26 | typedef struct {
27 | u_int32_t state[5];
28 | u_int64_t count;
29 | unsigned char buffer[SHA1_BLOCK_LENGTH];
30 | } SHA1_CTX;
31 |
32 | void SHA1Init(SHA1_CTX * context);
33 | void SHA1Transform(u_int32_t state[5], unsigned char buffer[SHA1_BLOCK_LENGTH]);
34 | void SHA1Update(SHA1_CTX *context, unsigned char *data, unsigned int len);
35 | void SHA1Final(unsigned char digest[SHA1_DIGEST_LENGTH], SHA1_CTX *context);
36 |
37 | /* Context structure definition for dyncrypt */
38 | typedef SHA1_CTX sha1_context;
39 |
40 | #endif /* _SHA1_H_ */
41 |
--------------------------------------------------------------------------------
/dat.c:
--------------------------------------------------------------------------------
1 | /* DAT.C (c) Copyright Roger Bowler, 1999-2011 */
2 | /* Hercules Supported DAT Functions */
3 | /* */
4 | /* Released under "The Q Public License Version 1" */
5 | /* (http://www.hercules-390.org/herclic.html) as modifications to */
6 | /* Hercules. */
7 |
8 | /* z/Architecture support - (c) Copyright Jan Jaeger, 1999-2009 */
9 |
10 | #include "hstdinc.h"
11 | #include "hercules.h"
12 |
13 | #if defined(OPTION_NO_INLINE_DAT) || defined(OPTION_NO_INLINE_LOGICAL)
14 |
15 | #define _DAT_C
16 |
17 | #include "opcode.h"
18 |
19 | #include "inline.h"
20 |
21 | #if !defined(_GEN_ARCH)
22 |
23 | #if defined(_ARCHMODE2)
24 | #define _GEN_ARCH _ARCHMODE2
25 | #include "dat.c"
26 | #endif
27 |
28 | #if defined(_ARCHMODE3)
29 | #undef _GEN_ARCH
30 | #define _GEN_ARCH _ARCHMODE3
31 | #include "dat.c"
32 | #endif
33 |
34 | #endif /*!defined(_GEN_ARCH)*/
35 |
36 | #endif /*!defined(OPTION_NO_INLINE_DAT) || defined(OPTION_NO_INLINE_LOGICAL)*/
37 |
--------------------------------------------------------------------------------
/debug-all.jobs:
--------------------------------------------------------------------------------
1 |
2 | * Parallel-build all "Debug" Configurations for all Platforms...
3 |
4 | VCBUILD %VCBUILDOPT% "Hercules.vcproj" "Debug|Win32" /time /nologo
5 | VCBUILD %VCBUILDOPT% "Hercules.vcproj" "Debug|x64" /time /nologo
6 | # VCBUILD %VCBUILDOPT% "Hercules.vcproj" "Debug|Itanium" /time /nologo
7 |
--------------------------------------------------------------------------------
/decNumber/decnumber.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/decNumber/decnumber.pdf
--------------------------------------------------------------------------------
/fillfnam.h:
--------------------------------------------------------------------------------
1 | /* FILLFNAM.C (c) Copyright Roger Bowler, 1999-2011 */
2 | /* Hercules filename completion functions */
3 | /* */
4 | /* Released under "The Q Public License Version 1" */
5 | /* (http://www.hercules-390.org/herclic.html) as modifications to */
6 | /* Hercules. */
7 |
8 | // $Id$
9 |
10 |
11 | #ifndef __FILLFNAM_H__
12 | #define __FILLFNAM_H__
13 |
14 | int tab_pressed(char *cmdlinefull, size_t cmdlinelen, int *cmdoffset);
15 |
16 | #endif
17 |
--------------------------------------------------------------------------------
/hchan.h:
--------------------------------------------------------------------------------
1 | /* HCHAN.H (c) Copyright Ivan Warren, 2004-2011 */
2 | /* Based on work (c)Roger Bowler, Jan Jaeger & Others 1999-2010 */
3 | /* Generic channel device handler */
4 | /* */
5 | /* Released under "The Q Public License Version 1" */
6 | /* (http://www.hercules-390.org/herclic.html) as modifications to */
7 | /* Hercules. */
8 |
9 | // $Id$
10 |
11 | #ifndef __HCHAN_H__
12 | #define __HCHAN_H__
13 | /*
14 | * Hercules Generic Channel internal definitions
15 | * (c) Ivan Scott Warren 2004-2006
16 | * based on work
17 | * (c) Roger Bowler, Jan Jaeger and Others 1999-2006
18 | * This code is covered by the QPL Licence
19 | */
20 |
21 | static int hchan_init_exec(DEVBLK *,int,char **);
22 | static int hchan_init_connect(DEVBLK *,int,char **);
23 | static int hchan_init_int(DEVBLK *,int,char **);
24 |
25 | #endif
26 |
--------------------------------------------------------------------------------
/herc_getopt.h:
--------------------------------------------------------------------------------
1 | /* HERC_GETOPT.H (c) Copyright Roger Bowler, 2006-2011 */
2 | /* Hercules getopt interface */
3 | /* */
4 | /* Released under "The Q Public License Version 1" */
5 | /* (http://www.hercules-390.org/herclic.html) as modifications to */
6 | /* Hercules. */
7 |
8 | // $Id$
9 |
10 | #if !defined(__HERC_GETOPT_H__)
11 | # define __HERC_GETOPT_H__
12 |
13 | #include "hercules.h"
14 | #include "getopt.h"
15 |
16 | #if defined(NEED_GETOPT_OPTRESET)
17 | #define OPTRESET() optreset=1
18 | #else
19 | #define OPTRESET()
20 | #endif
21 |
22 | #if defined(NEED_GETOPT_WRAPPER)
23 |
24 | // The following series of defines end up causing the source file
25 | // that happens to include "herc_getopt.h" to end up calling HERC's
26 | // version of getopt instead of the normal system getopt.
27 |
28 | #define getopt herc_getopt
29 | #define optarg herc_optarg
30 | #define optind herc_optind
31 | #define optopt herc_optopt
32 | #define optreset herc_optreset
33 |
34 | int herc_getopt(int,char * const *,const char *);
35 |
36 | #if defined(HAVE_GETOPT_LONG)
37 | #define getopt_long herc_getopt_long
38 | struct option; // (fwd ref)
39 | int herc_getopt_long(int,char * const *,const char *,const struct option *,int *);
40 | #endif
41 |
42 | extern char *herc_optarg;
43 | extern int herc_optind;
44 | extern int herc_opterr;
45 | extern int herc_optopt;
46 | extern int herc_optreset;
47 |
48 | #endif /* defined(NEED_GETOPT_WRAPPER) */
49 |
50 | #endif /* __HERC_GETOPT_H__ */
51 |
--------------------------------------------------------------------------------
/herclogo.txt:
--------------------------------------------------------------------------------
1 | @ALIGN NONE
2 | @SBA 0,0
3 | @SF P
4 | Hercules Version :
5 | @SF HP
6 | $(VERSION)
7 | @NL
8 | @SF P
9 | Host name :
10 | @SF HP
11 | $(HOSTNAME)
12 | @NL
13 | @SF P
14 | Host OS :
15 | @SF HP
16 | $(HOSTOS)-$(HOSTOSREL) $(HOSTOSVER)
17 | @NL
18 | @SF P
19 | Host Architecture :
20 | @SF HP
21 | $(HOSTARCH)
22 | @NL
23 | @SF P
24 | Processors :
25 | @SF HP
26 | $(HOSTNUMCPUS)
27 | @NL
28 | @SF P
29 | LPAR Name :
30 | @SF HP
31 | $(LPARNAME)
32 | @NL
33 | @SF P
34 | Device number :
35 | @SF HP
36 | $(CSS):$(CCUU)
37 | @NL
38 | @SF P
39 | Subchannel :
40 | @SF HP
41 | $(SUBCHAN)
42 | @SF P
43 | @ALIGN LEFT
44 |
45 |
46 | HHH HHH The S/370, ESA/390 and z/Architecture
47 | HHH HHH Emulator
48 | HHH HHH
49 | HHH HHH EEEE RRR CCC U U L EEEE SSS
50 | HHHHHHHHHHHHHHHH E R R C U U L E S
51 | HHHHHHHHHHHHHHHH EEE RRR C U U L EEE SS
52 | HHHHHHHHHHHHHHHH E R R C U U L E S
53 | HHH HHH EEEE R R CCC UU LLLL EEEE SSS
54 | HHH HHH
55 | HHH HHH
56 | HHH HHH My PC thinks it's a MAINFRAME
57 |
58 | Copyright (c) 1999-2011 Roger Bowler, Jan Jaeger, and others
59 |
--------------------------------------------------------------------------------
/hercules.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/hercules.ico
--------------------------------------------------------------------------------
/herror.h:
--------------------------------------------------------------------------------
1 | /* HERROR.H (c) Copyright Jan Jaeger, 2010-2011 */
2 | /* Hercules Specfic Error codes */
3 |
4 | // $Id$
5 |
6 |
7 | #ifndef _HERROR_H
8 | #define _HERROR_H
9 |
10 | /* Generic codes */
11 | #define HNOERROR (0) /* OK / NO ERROR */
12 | #define HERROR (-1) /* Generic Error */
13 | #define HERRINVCMD (-32767) /* Invalid command KEEP UNIQUE */
14 | #define HERRTHREADACT (-5) /* Thread is still active */
15 | /* CPU related error codes */
16 | #define HERRCPUOFF (-2) /* CPU Offline */
17 | #define HERRCPUONL (-3) /* CPU Online */
18 |
19 | /* Device related error codes */
20 | #define HERRDEVIDA (-2) /* Invalid Device Address */
21 |
22 |
23 |
24 |
25 |
26 | #endif /* _HERROR_H */
27 |
--------------------------------------------------------------------------------
/hetmap.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/hetmap.c
--------------------------------------------------------------------------------
/hextapi.h:
--------------------------------------------------------------------------------
1 | /* HEXTAPI.H (c) Copyright Roger Bowler & Others, 2005-2011 */
2 | /* Definition of Hercules External (public) APIs */
3 | /* */
4 | /* Released under "The Q Public License Version 1" */
5 | /* (http://www.hercules-390.org/herclic.html) as modifications to */
6 | /* Hercules. */
7 |
8 | // $Id$
9 |
10 | /*
11 | +-------------------------------------------------+
12 | | This file originally written by Ivan Warren |
13 | | THE STATE OF THIS API IS NOT YET FINALIZED |
14 | | AND THEREFORE, THE INTERFACE MAY CHANGE |
15 | +-------------------------------------------------+
16 | */
17 |
18 | #ifndef _HEXTAPI_H_
19 | #define _HEXTAPI_H_
20 |
21 | // ZZ FIXME: do we even NEED this header any longer?!
22 |
23 | #endif
24 |
--------------------------------------------------------------------------------
/history.h:
--------------------------------------------------------------------------------
1 | /* HISTORY.H (c) Copyright Roger Bowler, 1999-2011 */
2 | /* Hercules Command History Processes */
3 | /* */
4 | /* Released under "The Q Public License Version 1" */
5 | /* (http://www.hercules-390.org/herclic.html) as modifications to */
6 | /* Hercules. */
7 |
8 | // $Id$
9 |
10 |
11 | #ifndef HISTORY_H
12 | #define HISTORY_H
13 |
14 | extern int history_requested;
15 | extern char *historyCmdLine;
16 |
17 | int history_init();
18 | int history_add(char *cmdline);
19 | int history_show();
20 | int history_absolute_line(int x);
21 | int history_relative_line(int x);
22 | int history_next(void);
23 | int history_prev(void);
24 | int history_remove(void);
25 | #endif
26 |
--------------------------------------------------------------------------------
/html/hercmsct.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Hercules Version 3: System Messages: CT - Channel-to-Channel Adapter
5 | Emulation
6 |
7 |
8 |
10 | Hercules Version 3: System Messages: CT - Channel-to-Channel Adapter
11 | Emulation
12 |
13 | This page describes the channel-to-channel adapter emulation messages for
14 | the Hercules S/370, ESA/390, and z/Architecture emulator.
15 |
Messages
16 |
17 |
18 | HHCCT001I
19 |
20 |
21 | Meaning
22 |
23 | Issued by
24 | ctcadpt.c, function
25 |
26 |
27 |
28 |
29 | If you have a question about Hercules, see the
30 | Hercules Frequently-Asked Questions page.
31 |
32 |
33 |
34 |
35 | Last updated $Date$ $Revision$
36 |
37 |
38 |
--------------------------------------------------------------------------------
/html/hercmsda.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Hercules Version 3: System Messages: DA - DASD Emulation
5 |
6 |
7 |
9 | Hercules Version 3: System Messages: DA - DASD Emulation
10 |
11 | This page describes the DASD emulation messages for the Hercules S/370,
12 | ESA/390, and z/Architecture emulator.
13 |
Messages
14 |
15 |
16 | HHCDA001I
17 |
18 |
19 | Meaning
20 |
21 | Issued by
22 | ckddasd.c, function
23 |
24 |
25 |
26 |
27 | If you have a question about Hercules, see the
28 | Hercules Frequently-Asked Questions page.
29 |
30 |
31 |
32 |
33 | Last updated $Date$ $Revision$
34 |
35 |
36 |
--------------------------------------------------------------------------------
/html/hercmsdi.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Hercules Version 3: System Messages: DI - dasdinit
5 |
6 |
7 |
9 | Hercules Version 3: System Messages: DI - dasdinit
10 |
11 | This page describes the messages for the Hercules S/370,
12 | ESA/390, and z/Architecture emulator utility program dasdinit
.
13 |
Messages
14 |
15 |
16 | HHCDI001I DASD initialization successfully completed.
17 |
18 |
19 | Meaning
20 | The requested DASD volume has been successfully initialized and is
21 | ready for use.
22 | Issued by
23 | dasdinit.c, function main
24 |
25 |
26 | HHCDI002I DASD initialization unsuccessful
27 |
28 |
29 | Meaning
30 | Initialization of the requested DASD volume was not successful.
31 | Action
32 | Refer to preceding error messages to determine the cause.
33 | Issued by
34 | dasdinit.c, function main
35 |
36 |
37 |
38 |
39 | If you have a question about Hercules, see the
40 | Hercules Frequently-Asked Questions page.
41 |
42 |
43 |
44 |
45 | Last updated $Date$ $Revision$
46 |
47 |
48 |
--------------------------------------------------------------------------------
/html/hercmshe.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Hercules Version 3: System Messages: HE - hetinit
5 |
6 |
7 |
9 | Hercules Version 3: System Messages: HE - hetinit
10 |
11 | This page describes the messages for the Hercules S/370,
12 | ESA/390, and z/Architecture emulator utility program hetinit
.
13 |
Messages
14 |
15 |
16 | HHCHE001I
17 |
18 |
19 | Meaning
20 |
21 | Issued by
22 | hetinit.c, function
23 |
24 |
25 |
26 |
27 | If you have a question about Hercules, see the
28 | Hercules Frequently-Asked Questions page.
29 |
30 |
31 |
32 |
33 | Last updated $Date$ $Revision$
34 |
35 |
36 |
--------------------------------------------------------------------------------
/html/hercmshg.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Hercules Version 3: System Messages: HG - hetget
5 |
6 |
7 |
9 | Hercules Version 3: System Messages: HG - hetget
10 |
11 | This page describes the messages for the Hercules S/370,
12 | ESA/390, and z/Architecture emulator utility program hetget
.
13 |
Messages
14 |
15 |
16 | HHCHG001I
17 |
18 |
19 | Meaning
20 |
21 | Issued by
22 | hetget.c, function
23 |
24 |
25 |
26 |
27 | If you have a question about Hercules, see the
28 | Hercules Frequently-Asked Questions page.
29 |
30 |
31 |
32 |
33 | Last updated $Date$ $Revision$
34 |
35 |
36 |
--------------------------------------------------------------------------------
/html/hercmshm.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Hercules Version 3: System Messages: HM - hetmap
5 |
6 |
7 |
9 | Hercules Version 3: System Messages: HM - hetmap
10 |
11 | This page describes the messages for the Hercules S/370,
12 | ESA/390, and z/Architecture emulator utility program hetmap
.
13 |
Messages
14 |
15 |
16 | HHCHM001I
17 |
18 |
19 | Meaning
20 |
21 | Issued by
22 | hetmap.c, function
23 |
24 |
25 |
26 |
27 | If you have a question about Hercules, see the
28 | Hercules Frequently-Asked Questions page.
29 |
30 |
31 |
32 |
33 | Last updated $Date$ $Revision$
34 |
35 |
36 |
--------------------------------------------------------------------------------
/html/hercmshu.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Hercules Version 3: System Messages: HU - hetutil
5 |
6 |
7 |
9 | Hercules Version 3: System Messages: HU - hetinit
10 |
11 | This page describes the messages for the Hercules S/370,
12 | ESA/390, and z/Architecture emulator utility program hetutil
.
13 |
Messages
14 |
15 |
16 | HHCHU001I
17 |
18 |
19 | Meaning
20 |
21 | Issued by
22 | hetutil.c, function
23 |
24 |
25 |
26 |
27 | If you have a question about Hercules, see the
28 | Hercules Frequently-Asked Questions page.
29 |
30 |
31 |
32 |
33 | Last updated $Date$ $Revision$
34 |
35 |
36 |
--------------------------------------------------------------------------------
/html/hercmssd.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Hercules Version 3: System Messages: SD - Socket Devices
5 |
6 |
7 |
9 | Hercules Version 3: System Messages: SD - Socket Devices
10 |
11 | This page describes the messages for the Hercules S/370,
12 | ESA/390, and z/Architecture emulator common routines to support socket
13 | devices.
14 |
Messages
15 |
16 |
17 | HHCSD001I
18 |
19 |
20 | Meaning
21 |
22 | Issued by
23 | panel.c, function
24 |
25 |
26 |
27 |
28 | If you have a question about Hercules, see the
29 | Hercules Frequently-Asked Questions page.
30 |
31 |
32 |
33 |
34 | Last updated $Date$ $Revision$
35 |
36 |
37 |
--------------------------------------------------------------------------------
/html/hercmsta.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Hercules Version 3: System Messages: TA - Tape Device Emulation
5 |
6 |
7 |
9 | Hercules Version 3: System Messages: TA - Tape Device Emulation
10 |
11 | This page describes the tape device emulation messages for the Hercules S/370,
12 | ESA/390, and z/Architecture emulator.
13 |
Messages
14 |
15 |
16 | HHCTA001I
17 |
18 |
19 | Meaning
20 |
21 | Issued by
22 | tapedev.c, function
23 |
24 |
25 |
26 |
27 | If you have a question about Hercules, see the
28 | Hercules Frequently-Asked Questions page.
29 |
30 |
31 |
32 |
33 | Last updated $Date$ $Revision$
34 |
35 |
36 |
--------------------------------------------------------------------------------
/html/hercmstc.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Hercules Version 3: System Messages: TC - tapecopy
5 |
6 |
7 |
9 | Hercules Version 3: System Messages: TC - tapecopy
10 |
11 | This page describes the messages for the Hercules S/370,
12 | ESA/390, and z/Architecture emulator utility program tapecopy
.
13 |
Messages
14 |
15 |
16 | HHCTC001I
17 |
18 |
19 | Meaning
20 |
21 | Issued by
22 | tapecopy.c, function
23 |
24 |
25 |
26 |
27 | If you have a question about Hercules, see the
28 | Hercules Frequently-Asked Questions page.
29 |
30 |
31 |
32 |
33 | Last updated $Date$ $Revision$
34 |
35 |
36 |
--------------------------------------------------------------------------------
/html/hercmstm.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Hercules Version 3: System Messages: TM - tapemap
5 |
6 |
7 |
9 | Hercules Version 3: System Messages: TM - tapemap
10 |
11 | This page describes the messages for the Hercules S/370,
12 | ESA/390, and z/Architecture emulator utility program tapemap
.
13 |
Messages
14 |
15 |
16 | HHCTM001I
17 |
18 |
19 | Meaning
20 |
21 | Issued by
22 | tapemap.c, function
23 |
24 |
25 |
26 |
27 | If you have a question about Hercules, see the
28 | Hercules Frequently-Asked Questions page.
29 |
30 |
31 |
32 |
33 | Last updated $Date$ $Revision$
34 |
35 |
36 |
--------------------------------------------------------------------------------
/html/hercmsts.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Hercules Version 3: System Messages: TS - tapesplt
5 |
6 |
7 |
9 | Hercules Version 3: System Messages: TS - tapesplt
10 |
11 | This page describes the messages for the Hercules S/370,
12 | ESA/390, and z/Architecture emulator utility program tapesplt
.
13 |
Messages
14 |
15 |
16 | HHCTS001I
17 |
18 |
19 | Meaning
20 |
21 | Issued by
22 | tapesplt.c, function
23 |
24 |
25 |
26 |
27 | If you have a question about Hercules, see the
28 | Hercules Frequently-Asked Questions page.
29 |
30 |
31 |
32 |
33 | Last updated $Date$ $Revision$
34 |
35 |
36 |
--------------------------------------------------------------------------------
/html/hercmstu.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Hercules Version 3: System Messages: TU - TUN/TAP device support
5 |
6 |
7 |
9 | Hercules Version 3: System Messages: TU - TUN/TAP device support
10 |
11 | This page describes the messages for the Hercules S/370,
12 | ESA/390, and z/Architecture emulator TUN/TAP support routines.
13 |
Messages
14 |
15 |
16 | HHCTU001I
17 |
18 |
19 | Meaning
20 |
21 | Issued by
22 | tuntap.c, function
23 |
24 |
25 |
26 |
27 | If you have a question about Hercules, see the
28 | Hercules Frequently-Asked Questions page.
29 |
30 |
31 |
32 |
33 | Last updated $Date$ $Revision$
34 |
35 |
36 |
--------------------------------------------------------------------------------
/html/hercules.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Hercules
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | Hercules uses frames. Your browser does not support frames.
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/html/images/back.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/back.gif
--------------------------------------------------------------------------------
/html/images/bkued.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/bkued.gif
--------------------------------------------------------------------------------
/html/images/blueu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/blueu.gif
--------------------------------------------------------------------------------
/html/images/dial1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/dial1.gif
--------------------------------------------------------------------------------
/html/images/dial2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/dial2.gif
--------------------------------------------------------------------------------
/html/images/dial3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/dial3.gif
--------------------------------------------------------------------------------
/html/images/dial4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/dial4.gif
--------------------------------------------------------------------------------
/html/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/favicon.ico
--------------------------------------------------------------------------------
/html/images/greend.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/greend.gif
--------------------------------------------------------------------------------
/html/images/greenu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/greenu.gif
--------------------------------------------------------------------------------
/html/images/hercpic-rblk-256.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/hercpic-rblk-256.gif
--------------------------------------------------------------------------------
/html/images/hercpic-rblk-80.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/hercpic-rblk-80.gif
--------------------------------------------------------------------------------
/html/images/interruptd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/interruptd.gif
--------------------------------------------------------------------------------
/html/images/interruptu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/interruptu.gif
--------------------------------------------------------------------------------
/html/images/loadd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/loadd.gif
--------------------------------------------------------------------------------
/html/images/loadoffu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/loadoffu.gif
--------------------------------------------------------------------------------
/html/images/loadonu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/loadonu.gif
--------------------------------------------------------------------------------
/html/images/loadu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/loadu.gif
--------------------------------------------------------------------------------
/html/images/manoffu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/manoffu.gif
--------------------------------------------------------------------------------
/html/images/manonu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/manonu.gif
--------------------------------------------------------------------------------
/html/images/note.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/note.gif
--------------------------------------------------------------------------------
/html/images/osi-certified-60x50.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/osi-certified-60x50.jpg
--------------------------------------------------------------------------------
/html/images/poweroffd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/poweroffd.gif
--------------------------------------------------------------------------------
/html/images/poweroffu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/poweroffu.gif
--------------------------------------------------------------------------------
/html/images/poweronoffd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/poweronoffd.gif
--------------------------------------------------------------------------------
/html/images/poweronoffu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/poweronoffu.gif
--------------------------------------------------------------------------------
/html/images/poweronond.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/poweronond.gif
--------------------------------------------------------------------------------
/html/images/powerononu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/powerononu.gif
--------------------------------------------------------------------------------
/html/images/redd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/redd.gif
--------------------------------------------------------------------------------
/html/images/redu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/redu.gif
--------------------------------------------------------------------------------
/html/images/restartd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/restartd.gif
--------------------------------------------------------------------------------
/html/images/restartu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/restartu.gif
--------------------------------------------------------------------------------
/html/images/startd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/startd.gif
--------------------------------------------------------------------------------
/html/images/startu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/startu.gif
--------------------------------------------------------------------------------
/html/images/stopd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/stopd.gif
--------------------------------------------------------------------------------
/html/images/stopu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/stopu.gif
--------------------------------------------------------------------------------
/html/images/stored.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/stored.gif
--------------------------------------------------------------------------------
/html/images/storeu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/storeu.gif
--------------------------------------------------------------------------------
/html/images/sysoffu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/sysoffu.gif
--------------------------------------------------------------------------------
/html/images/sysonu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/sysonu.gif
--------------------------------------------------------------------------------
/html/images/translucentoffd.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/translucentoffd.gif
--------------------------------------------------------------------------------
/html/images/translucentoffu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/translucentoffu.gif
--------------------------------------------------------------------------------
/html/images/translucentond.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/translucentond.gif
--------------------------------------------------------------------------------
/html/images/translucentonu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/translucentonu.gif
--------------------------------------------------------------------------------
/html/images/waitoffu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/waitoffu.gif
--------------------------------------------------------------------------------
/html/images/waitonu.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opensourcemainframes/hercules/1a40566d755a43ce9c610caaf566484a3809da0b/html/images/waitonu.gif
--------------------------------------------------------------------------------
/html/include/footer.htmlpart:
--------------------------------------------------------------------------------
1 |