-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
05540f9
commit 7ad3c01
Showing
4 changed files
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
&CONTROL OFF NOMSG | ||
* Load bREXX into resident memory and establish it as the DMSREX command. | ||
* This is called from the SYSPROF EXEC. | ||
|
||
SET LDRTBLS 64 | ||
|
||
* Load the native GCC runtime library into memory. | ||
RESLIB LOAD GCCLIB (NAME GCCLIB | ||
&IF &RETCODE NE 0 &TYPE SYSPROF Error loading GCCLIB into memory! | ||
&IF &RETCODE NE 0 &GOTO -DONE | ||
|
||
* Initialize the runtime library | ||
GCCLIB | ||
|
||
* Now load bREXX into memory. | ||
RESLIB LOAD BREXX (NAME DMSREX | ||
&IF &RETCODE NE 0 &TYPE SYSPROF Error loading bREXX into memory! | ||
&IF &RETCODE NE 0 &GOTO -DONE | ||
|
||
* Initialize the bREXX interpretor | ||
DMSREX | ||
|
||
-DONE | ||
&EXIT 0 |