├── .gitignore ├── COPYING ├── README ├── README.SAMPLES.ELF.txt ├── README.SAMPLES.txt ├── asma ├── asmbase.py ├── asmbin.py ├── asmcards.py ├── asmconfig.py ├── asmdcds.py ├── asminput.py ├── asmline.py ├── asmlist.py ├── asmlocal.py ├── asmmacs.py ├── asmoper.py ├── asmopnd.py ├── asmstmts.py ├── asmtokens.py ├── assembler.py ├── cards.py ├── insnbldr.py ├── literal.py ├── lnkbase.py ├── macopnd.py ├── macsyms.py ├── model.py ├── msl │ ├── PoO.txt │ ├── all-insn.msl │ ├── e370-insn.msl │ ├── e390-insn.msl │ ├── formats.msl │ ├── s360-insn.msl │ ├── s370-insn.msl │ ├── s370XA-insn.msl │ ├── s380-insn.msl │ ├── s390x-insn.msl │ └── zem-insn.msl ├── msldb.py ├── parsers.py └── tests │ └── chars │ ├── asm │ ├── asma-20210416.102259.txt │ ├── chars.asm │ ├── chars.hex │ ├── chars.odt │ ├── chars.pdf │ ├── chrstst.py │ ├── hex │ ├── listing.hex │ ├── py128.txt │ └── src ├── doc ├── BLS.odt ├── BLS.pdf ├── Configuration.odt ├── Configuration.pdf ├── GIM.odt ├── GIM.pdf ├── Guide.odt ├── Guide.pdf ├── SATK - Machine Specification Language - v0.1.odt ├── SATK for s390 - DASD Volume Standard.odt ├── SATK for s390 - Introduction to Mainframe Bare-metal Programming.odt ├── SATK for s390 - Language Processing Tools.odt ├── SATK for s390 - Standards Conventions and Information.odt ├── SATK for s390 - The Mainframe Boot Process.odt ├── SATK.odt ├── SATK.pdf ├── XCARD.odt ├── XCARD.pdf ├── asma │ ├── ASMA.odt │ ├── ASMA.pdf │ ├── IPLASMA.odt │ ├── IPLASMA.pdf │ ├── Instruction_Status.odt │ ├── Instruction_Status.pdf │ ├── MSL.odt │ ├── MSL.pdf │ └── p41-pratt.pdf ├── fdl-1.3.txt ├── herc │ ├── Architecture Comparisons v0.3.odt │ ├── Architecture Comparisons v0.3.pdf │ ├── FBA Manual.odt │ ├── FBA Manual.pdf │ ├── FBA_DASD_Structures.odt │ ├── FBA_DASD_Structures.pdf │ ├── Undocumented.odt │ └── Undocumented.pdf ├── iplelf │ ├── .directory │ ├── IPL ELF ABI Supplement.odt │ └── SATK for s390 - IPL Medium Preparation Processor.odt ├── macros │ ├── MemoryMgmt.odt │ ├── Relocation.odt │ ├── SATK.odt │ ├── SATK.pdf │ ├── func.odt │ ├── func.pdf │ ├── herc.odt │ ├── herc.pdf │ ├── io.odt │ ├── io.pdf │ ├── sync.odt │ └── sync.pdf └── xforth │ ├── xforth.odt │ └── xforth.pdf ├── lib ├── s370.ld ├── s390.ld └── s390x.ld ├── loaders └── fba │ ├── s360 │ ├── basm │ ├── basm-20200907.091311.txt │ └── boot │ │ ├── ASAREGN.bin │ │ ├── LOADER.bin │ │ └── fbalodr.txt │ ├── s370 │ ├── basm │ ├── basm-20200908.061414.txt │ └── boot │ │ ├── ASAREGN.bin │ │ ├── LOADER.bin │ │ └── fbalodr.txt │ ├── s390 │ ├── basm │ ├── basm-20200908.064328.txt │ └── boot │ │ ├── ASAREGN.bin │ │ ├── LOADER.bin │ │ └── fbalodr.txt │ └── s390x │ ├── basm │ ├── basm-20200908.073244.txt │ └── boot │ ├── ASAREGN.bin │ ├── LOADER.bin │ └── fbalodr.txt ├── lodrmac ├── AARCH.mac ├── BLASALD.mac ├── BLCOMMON.mac ├── BLINIT.mac ├── BLMEM.mac ├── BLSASA.mac ├── BLSCALL.mac ├── BLSERR.mac ├── BLSIODS.mac ├── BLSIOT.mac ├── BLSORB.mac ├── BLSPB.mac ├── BLSTABLE.mac ├── BOOTNTR.mac ├── IOTBL.mac ├── SAVEAREA.mac ├── SERVENAD.mac ├── SERVEND.mac ├── SERVEXCP.mac ├── SERVICE.mac ├── SERVID.mac ├── SERVIOIN.mac ├── SERVNOOP.mac ├── SERVPEND.mac ├── SERVQIOT.mac ├── SERVRTN.mac ├── SERVS.mac └── STLOD1.mac ├── maclib ├── ACALL.mac ├── AFUN.mac ├── ANTR.mac ├── APROB.mac ├── ARCHIND.mac ├── ARCHLVL.mac ├── ASAIPL.mac ├── ASALOAD.mac ├── ASAREA.mac ├── ASAZAREA.mac ├── CALL.mac ├── CALLR.mac ├── CPUWAIT.mac ├── CZAM.mac ├── DSECTS.mac ├── DWAIT.mac ├── DWAITEND.mac ├── ENADEV.mac ├── ESA390.mac ├── FRAME.mac ├── FUNCTION.mac ├── HRCCMD.mac ├── HRCIPLP.mac ├── ICALL.mac ├── IFUN.mac ├── IOCB.mac ├── IOCBDS.mac ├── IOFMT.mac ├── IOINIT.mac ├── IOTRFR.mac ├── LOADHL.mac ├── LOCAL.mac ├── LOD1.mac ├── LTEST.mac ├── MEMSZ.mac ├── MEMSZS.mac ├── ORB.mac ├── POINTER.mac ├── PSWFMT.mac ├── RAWAIT.mac ├── RAWIO.mac ├── REGEQU.mac ├── RETURN.mac ├── SCALL.mac ├── SCPI.mac ├── SETZ.mac ├── SFUN.mac ├── SIGCPU.mac ├── SMMGR.mac ├── SMMGRB.mac ├── STACK.mac ├── STCCWADR.mac ├── STCCWCNT.mac ├── STKINIT.mac ├── TRAP128.mac ├── TRAP64.mac ├── TRAPS.mac ├── VMOVE.mac ├── ZARCH.mac ├── ZEROH.mac ├── ZEROL.mac ├── ZEROLH.mac └── ZEROLL.mac ├── mmmac ├── ALLOCH.mac ├── ALLOCL.mac ├── DEFPOOL.mac └── MEMPOOL.mac ├── qemulib ├── CONSINIT.mac ├── CONSWRIT.mac ├── LGCALL.mac ├── LGNTR.mac ├── LGSA.mac ├── LGXIT.mac ├── PDIE.mac ├── QEMU.mac ├── SPIF.mac └── SPIFINIT.mac ├── relomac ├── COPYSELF.mac ├── RELOCALL.mac ├── RELOCATE.mac ├── RTABLE.mac ├── RTBL.mac └── RTBLEND.mac ├── samples ├── asma │ ├── dsects.asm │ ├── hello.asm │ ├── hellof.asm │ ├── hellofm.asm │ └── sos.asm ├── decklodr │ ├── exeinobj │ ├── s370 │ │ ├── s370.conf │ │ └── s370.rc │ ├── s370bc │ │ ├── s370bc.conf │ │ └── s370bc.rc │ ├── s390 │ │ ├── s390.conf │ │ └── s390.rc │ └── s390x │ │ ├── s390x.conf │ │ └── s390x.rc ├── embedded │ ├── card │ │ ├── cardmbed.conf │ │ ├── cardmbed.rc │ │ ├── default.conf │ │ └── default.rc │ ├── cdrom │ │ ├── cdrommbed.conf │ │ ├── cdrommbed.rc │ │ ├── default.conf │ │ └── default.rc │ ├── ckd │ │ ├── ckdmbed.conf │ │ ├── ckdmbed.rc │ │ ├── default.conf │ │ └── default.rc │ ├── embed.S │ ├── fba │ │ ├── s370 │ │ │ ├── build │ │ │ │ ├── .directory │ │ │ │ ├── embed │ │ │ │ ├── embed.exe.txt │ │ │ │ ├── embed.lds │ │ │ │ ├── embed.lst │ │ │ │ ├── embed.map │ │ │ │ ├── embed.o │ │ │ │ ├── embed.obj.txt │ │ │ │ └── embed.s370 │ │ │ ├── embed.3310 │ │ │ ├── embed.3310.debug.txt │ │ │ ├── hercules.sand.20130617.102721.log │ │ │ ├── s370.conf │ │ │ └── s370.rc │ │ ├── s370bc │ │ │ ├── build │ │ │ │ ├── embed │ │ │ │ ├── embed.exe.txt │ │ │ │ ├── embed.lds │ │ │ │ ├── embed.lst │ │ │ │ ├── embed.map │ │ │ │ ├── embed.o │ │ │ │ ├── embed.obj.txt │ │ │ │ └── embed.s370 │ │ │ ├── embed.3310 │ │ │ ├── embed.3310.debug.txt │ │ │ ├── hercules.sand.20130617.123535.log │ │ │ ├── s370bc.conf │ │ │ └── s370bc.rc │ │ ├── s390 │ │ │ ├── build │ │ │ │ ├── embed │ │ │ │ ├── embed.exe.txt │ │ │ │ ├── embed.lds │ │ │ │ ├── embed.lst │ │ │ │ ├── embed.map │ │ │ │ ├── embed.o │ │ │ │ └── embed.obj.txt │ │ │ ├── embed.3310 │ │ │ ├── embed.3310.debug.txt │ │ │ ├── hercules.sand.20130617.143117.log │ │ │ ├── s390.conf │ │ │ └── s390.rc │ │ └── s390x │ │ │ ├── build │ │ │ ├── embed │ │ │ ├── embed.exe.txt │ │ │ ├── embed.lds │ │ │ ├── embed.lst │ │ │ ├── embed.map │ │ │ ├── embed.o │ │ │ └── embed.obj.txt │ │ │ ├── embed.3310 │ │ │ ├── embed.3310.debug.txt │ │ │ ├── hercules.sand.20130617.153628.log │ │ │ ├── s390x.conf │ │ │ └── s390x.rc │ ├── lodrtest │ └── tape │ │ ├── default.conf │ │ ├── default.rc │ │ ├── tapembed.conf │ │ └── tapembed.rc ├── external │ ├── extrnal.S │ ├── fba │ │ ├── s370 │ │ │ ├── build │ │ │ │ ├── extrnal │ │ │ │ ├── extrnal.exe.txt │ │ │ │ ├── extrnal.lds │ │ │ │ ├── extrnal.lst │ │ │ │ ├── extrnal.map │ │ │ │ ├── extrnal.o │ │ │ │ ├── extrnal.obj.txt │ │ │ │ └── extrnal.s370 │ │ │ ├── extrnal.3310 │ │ │ ├── extrnal.3310.debug.txt │ │ │ ├── hercules.sand.20130617.163207.log │ │ │ ├── s370.conf │ │ │ └── s370.rc │ │ ├── s370bc │ │ │ ├── build │ │ │ │ ├── extrnal │ │ │ │ ├── extrnal.exe.txt │ │ │ │ ├── extrnal.lds │ │ │ │ ├── extrnal.lst │ │ │ │ ├── extrnal.map │ │ │ │ ├── extrnal.o │ │ │ │ ├── extrnal.obj.txt │ │ │ │ └── extrnal.s370 │ │ │ ├── extrnal.3310 │ │ │ ├── extrnal.3310.debug.txt │ │ │ ├── hercules.sand.20130617.224003.log │ │ │ ├── s370bc.conf │ │ │ └── s370bc.rc │ │ ├── s390 │ │ │ ├── build │ │ │ │ ├── extrnal │ │ │ │ ├── extrnal.exe.txt │ │ │ │ ├── extrnal.lds │ │ │ │ ├── extrnal.lst │ │ │ │ ├── extrnal.map │ │ │ │ ├── extrnal.o │ │ │ │ └── extrnal.obj.txt │ │ │ ├── extrnal.3310 │ │ │ ├── extrnal.3310.debug.txt │ │ │ ├── hercules.sand.20130617.225540.log │ │ │ ├── s390.conf │ │ │ └── s390.rc │ │ └── s390x │ │ │ ├── build │ │ │ ├── extrnal │ │ │ ├── extrnal.exe.txt │ │ │ ├── extrnal.lds │ │ │ ├── extrnal.lst │ │ │ ├── extrnal.map │ │ │ ├── extrnal.o │ │ │ └── extrnal.obj.txt │ │ │ ├── extrnal.3310 │ │ │ ├── extrnal.3310.debug.txt │ │ │ ├── hercules.sand.20130617.230948.log │ │ │ ├── s390x.conf │ │ │ └── s390x.rc │ └── lodrtest ├── guide │ ├── pgm1 │ │ ├── asm │ │ ├── asma-20200606.094212.txt │ │ ├── ipl │ │ ├── ldipl │ │ │ ├── IPLPGM1.bin │ │ │ ├── IPLPSW.bin │ │ │ └── pgm1.txt │ │ ├── log-20200606.100241.txt │ │ ├── pgm1.asm │ │ ├── pgm1.conf │ │ ├── pgm1.rc │ │ └── run │ ├── pgm2 │ │ ├── ipl │ │ ├── iplasma-20200609.072506.txt │ │ ├── ldipl │ │ │ ├── IPLPGM1.bin │ │ │ ├── IPLPSW.bin │ │ │ └── pgm1.txt │ │ ├── log-20200609.072735.txt │ │ ├── med │ │ ├── pgm2.3310 │ │ ├── pgm2.conf │ │ └── pgm2.rc │ ├── pgm3 │ │ ├── asm │ │ ├── asma-20200614.230035.txt │ │ ├── asma-20220827.084845.txt │ │ ├── ipl │ │ ├── iplasma-20220827.091420.txt │ │ ├── ldipl │ │ │ ├── ASAREGN.bin │ │ │ ├── IPLPGM3.bin │ │ │ └── pgm3.txt │ │ ├── log-20220827.091156.txt │ │ ├── med │ │ ├── pgm3.3310 │ │ ├── pgm3.asm │ │ ├── pgm3.conf │ │ └── pgm3.rc │ ├── pgm4 │ │ ├── asm │ │ ├── asma-20200720.144552.txt │ │ ├── asma-20220827.100406.txt │ │ ├── basm │ │ ├── basma-20200720.145049.txt │ │ ├── basma-20220827.125522.txt │ │ ├── boot │ │ │ ├── ASAREGN.bin │ │ │ ├── BOOT4.bin │ │ │ └── boot4.txt │ │ ├── boot4.asm │ │ ├── ipl │ │ ├── iplasma-20220827.125816.txt │ │ ├── ldipl │ │ │ ├── ASAREGN.bin │ │ │ ├── BOOTED4.bin │ │ │ └── pgm4.txt │ │ ├── log-20200906.063426.txt │ │ ├── log-20220827.130426.txt │ │ ├── med │ │ ├── pgm4.3310 │ │ ├── pgm4.asm │ │ ├── pgm4.conf │ │ └── pgm4.rc │ └── pgm5 │ │ ├── s360 │ │ ├── asm │ │ ├── asma-20200908.053139.txt │ │ ├── ipl │ │ ├── iplasma-20200908.053146.txt │ │ ├── ldipl │ │ │ ├── ASAREGN.bin │ │ │ ├── BOOTED5.bin │ │ │ └── pgm5.txt │ │ ├── log-20200908.053253.txt │ │ ├── med │ │ ├── pgm5.3310 │ │ ├── pgm5.asm │ │ ├── pgm5.conf │ │ └── pgm5.rc │ │ ├── s370 │ │ ├── asm │ │ ├── asma-20200908.060727.txt │ │ ├── ipl │ │ ├── iplasma-20200908.062234.txt │ │ ├── ldipl │ │ │ ├── ASAREGN.bin │ │ │ ├── BOOTED5.bin │ │ │ └── pgm5.txt │ │ ├── log-20200908.062612.txt │ │ ├── med │ │ ├── pgm5.3310 │ │ ├── pgm5.asm │ │ ├── pgm5.conf │ │ └── pgm5.rc │ │ ├── s390 │ │ ├── asm │ │ ├── asma-20200908.065153.txt │ │ ├── ipl │ │ ├── iplasma-20200908.065448.txt │ │ ├── ldipl │ │ │ ├── ASAREGN.bin │ │ │ ├── BOOTED5.bin │ │ │ └── pgm5.txt │ │ ├── log-20200908.070321.txt │ │ ├── med │ │ ├── pgm5.3310 │ │ ├── pgm5.asm │ │ ├── pgm5.conf │ │ └── pgm5.rc │ │ └── s390x │ │ ├── asm │ │ ├── asma-20200908.072544.txt │ │ ├── ipl │ │ ├── iplasma-20200908.073002.txt │ │ ├── ldipl │ │ ├── ASAREGN.bin │ │ └── pgm5.txt │ │ ├── log-20200908.074450.txt │ │ ├── med │ │ ├── pgm5.3310 │ │ ├── pgm5.asm │ │ ├── pgm5.conf │ │ └── pgm5.rc ├── ihandlers │ ├── ih.S │ ├── ihtest │ ├── s370 │ │ ├── s370.conf │ │ └── s370.rc │ ├── s370bc │ │ ├── s370bc.conf │ │ └── s370bc.rc │ ├── s390 │ │ ├── s390.conf │ │ └── s390.rc │ └── s390x │ │ ├── s390x.conf │ │ └── s390x.rc ├── imlfun ├── iplelf │ ├── fba │ │ ├── s370 │ │ │ ├── build │ │ │ │ ├── iplelf │ │ │ │ ├── iplelf.exe.txt │ │ │ │ ├── iplelf.lds │ │ │ │ ├── iplelf.lst │ │ │ │ ├── iplelf.map │ │ │ │ ├── iplelf.o │ │ │ │ ├── iplelf.obj.txt │ │ │ │ └── iplelf.s370 │ │ │ ├── hercules.sand.20130616.133242.log │ │ │ ├── iplelf.3310 │ │ │ ├── iplelf.3310.debug.txt │ │ │ ├── s370.conf │ │ │ └── s370.rc │ │ ├── s370bc │ │ │ ├── build │ │ │ │ ├── iplelf │ │ │ │ ├── iplelf.exe.txt │ │ │ │ ├── iplelf.lds │ │ │ │ ├── iplelf.lst │ │ │ │ ├── iplelf.lst~ │ │ │ │ ├── iplelf.map │ │ │ │ ├── iplelf.o │ │ │ │ ├── iplelf.obj.txt │ │ │ │ └── iplelf.s370 │ │ │ ├── hercules.sand.20130616.141517.log │ │ │ ├── iplelf.3310 │ │ │ ├── iplelf.3310.debug.txt │ │ │ ├── s370bc.conf │ │ │ └── s370bc.rc │ │ ├── s390 │ │ │ ├── build │ │ │ │ ├── iplelf │ │ │ │ ├── iplelf.exe.txt │ │ │ │ ├── iplelf.lds │ │ │ │ ├── iplelf.lst │ │ │ │ ├── iplelf.map │ │ │ │ ├── iplelf.o │ │ │ │ └── iplelf.obj.txt │ │ │ ├── hercules.sand.20130616.143107.log │ │ │ ├── iplelf.3310 │ │ │ ├── iplelf.3310.debug.txt │ │ │ ├── s390.conf │ │ │ └── s390.rc │ │ └── s390x │ │ │ ├── build │ │ │ ├── iplelf │ │ │ ├── iplelf.exe.txt │ │ │ ├── iplelf.lds │ │ │ ├── iplelf.lst │ │ │ ├── iplelf.map │ │ │ ├── iplelf.o │ │ │ └── iplelf.obj.txt │ │ │ ├── hercules.sand.20130616.144505.log │ │ │ ├── iplelf.3310 │ │ │ ├── iplelf.3310.debug.txt │ │ │ ├── s390x.conf │ │ │ └── s390x.rc │ ├── iplelf.S │ └── lodrtest └── textseg │ ├── decklodr │ ├── decklodr.S │ ├── fba │ ├── s370 │ │ ├── build │ │ │ ├── textseg │ │ │ ├── textseg.exe.txt │ │ │ ├── textseg.lds │ │ │ ├── textseg.lst │ │ │ ├── textseg.map │ │ │ ├── textseg.o │ │ │ ├── textseg.obj.txt │ │ │ └── textseg.s370 │ │ ├── hercules.sand.20130616.004242.log │ │ ├── s370.conf │ │ ├── s370.rc │ │ ├── textseg.3310 │ │ └── textseg.3310.debug.txt │ ├── s370bc │ │ ├── build │ │ │ ├── textseg │ │ │ ├── textseg.exe.txt │ │ │ ├── textseg.lds │ │ │ ├── textseg.lst │ │ │ ├── textseg.map │ │ │ ├── textseg.o │ │ │ ├── textseg.obj.txt │ │ │ └── textseg.s370 │ │ ├── hercules.sand.20130616.074846.log │ │ ├── s370bc.conf │ │ ├── s370bc.rc │ │ ├── textseg.3310 │ │ └── textseg.3310.debug.txt │ ├── s390 │ │ ├── build │ │ │ ├── textseg │ │ │ ├── textseg.exe.txt │ │ │ ├── textseg.lds │ │ │ ├── textseg.lst │ │ │ ├── textseg.map │ │ │ ├── textseg.o │ │ │ └── textseg.obj.txt │ │ ├── hercules.sand.20130616.083022.log │ │ ├── s390.conf │ │ ├── s390.rc │ │ ├── textseg.3310 │ │ └── textseg.3310.debug.txt │ └── s390x │ │ ├── build │ │ ├── textseg │ │ ├── textseg.exe.txt │ │ ├── textseg.lds │ │ ├── textseg.lst │ │ ├── textseg.map │ │ ├── textseg.o │ │ └── textseg.obj.txt │ │ ├── hercules.sand.20130616.084355.log │ │ ├── s390x.conf │ │ ├── s390x.rc │ │ ├── textseg.3310 │ │ └── textseg.3310.debug.txt │ ├── lodrtest │ └── textseg.S ├── src ├── .directory ├── ABI-lcls.S ├── ABI-s390.S ├── ABI-s390x.S ├── ABI.S ├── CMS.S ├── CP.S ├── EBCDIC.S ├── ELF.S ├── ELF32.S ├── ELF64.S ├── OBJ.S ├── SYSIB.S ├── arch.S ├── archdep.S ├── bitmaps.S ├── dF18cmf.S ├── dF18pbs.S ├── debug_arch.S ├── debug_psw.S ├── displayf.S ├── drivers │ ├── .directory │ ├── DRIVER.S │ ├── DRIVERS.README │ ├── DRVUTIL.S │ ├── console.S │ ├── dev3215.S │ └── drivers.S ├── dwait.S ├── errnotbl.S ├── formatf.S ├── hal │ ├── .directory │ ├── ASB.S │ ├── HAL.S │ ├── IEIB.S │ ├── IHCB.S │ ├── archal.S │ ├── hals.S │ ├── ihal.S │ ├── ioal.S │ ├── ioallo.S │ └── util.S ├── hracfmac.S ├── hracfmod.S ├── ihandler.S ├── ihsave.S ├── interrupt.S ├── io.S ├── iortn.S ├── iortn370.S ├── ipl.S ├── ipl │ ├── .directory │ ├── cardmbed.S │ ├── cdrommbed.S │ ├── ckdmbed.S │ ├── fbam370.S │ ├── fbambed.S │ ├── include │ │ ├── .directory │ │ ├── IPLELF.S │ │ ├── bootnter.S │ │ ├── loaderif.S │ │ └── loaders.S │ └── tapembed.S ├── programf.S ├── psw.S ├── satkpfx.S ├── service.S ├── storage │ ├── .directory │ ├── STORAGE.S │ ├── memperm.S │ └── storages.S ├── strings.S ├── struct.S ├── table.S └── tracef.S ├── srcasm ├── hercules.mac ├── loader │ ├── bls.asm │ └── fbalodr.asm ├── satk.mac ├── selfrelo.mac └── table.mac ├── tools ├── .directory ├── PyELF.py ├── PyOBJBuilder.py ├── asma.py ├── asmafun ├── bfp.py ├── bfp_float.py ├── bfp_gmpy2.py ├── bintools.py ├── ckaslst.py ├── codepage.py ├── config.py ├── deck.py ├── dfp.py ├── elfs370.py ├── fp.py ├── fsm.py ├── gas_factory.py ├── herc │ └── herc_audit.py ├── hopcodes.py ├── inventory.py ├── ipl │ ├── .directory │ ├── ELFXO.py │ ├── OBJO.py │ ├── OBJX.py │ ├── PyIPLELF.py │ ├── awsutil.py │ ├── ccwutil.py │ ├── ci.py │ ├── ckdutil.py │ ├── exeinobj.py │ ├── fbadscb.py │ ├── fbautil.py │ ├── hexdump.py │ ├── ipldpp.py │ ├── iplmed.py │ ├── media.py │ ├── objutil.py │ ├── rdrpun.py │ ├── recsutil.py │ ├── repo.py │ ├── structure.py │ ├── translate.py │ └── volume.py ├── iplasma.py ├── lang │ ├── LL1grammar.py │ ├── LL1parser.py │ ├── expression.py │ ├── fsmparser.py │ ├── lang.py │ ├── langutil.py │ ├── lexer.py │ ├── parser.py │ ├── pratt.py │ ├── pratt2.py │ ├── pratt3.py │ ├── retest.py │ ├── sample.py │ ├── seqparser.py │ ├── sopl.py │ └── syntax.py ├── ldidlib.py ├── lds_factory.py ├── listing.py ├── medfun ├── msl.py ├── mslrpt.py ├── objlib.py ├── qelf.py ├── saconfig.py ├── satkfun ├── satkutil.py ├── specfile.py ├── stfle.py ├── xbuild ├── xmi.py ├── xtest ├── xtoolfun └── xverify ├── xcard ├── XCARD.mac ├── XCARDTST.mac ├── s390 │ ├── asmtst │ ├── asmtst-20201121.044808.txt │ ├── asmx │ ├── asmx-20201121.044155.txt │ ├── card │ ├── iplc │ ├── iplc-20201121.051023.txt │ ├── iplc.conf │ ├── iplc.rc │ ├── iplt │ ├── iplt-20201121.051703.txt │ ├── iplt.conf │ ├── iplt.rc │ ├── ldipl │ │ ├── XCARD.bin │ │ └── xcard.txt │ ├── load.aws │ ├── load.deck │ ├── medx │ ├── medx-20201121.045218.txt │ ├── tape │ ├── xcard.deck │ └── xcardtst.deck ├── xcard.asm └── xcardtst.asm └── xforth ├── LICENSE.txt ├── forth.py ├── forth_words.py ├── msp430.py └── xforth.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/COPYING -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/README -------------------------------------------------------------------------------- /README.SAMPLES.ELF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/README.SAMPLES.ELF.txt -------------------------------------------------------------------------------- /README.SAMPLES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/README.SAMPLES.txt -------------------------------------------------------------------------------- /asma/asmbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/asmbase.py -------------------------------------------------------------------------------- /asma/asmbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/asmbin.py -------------------------------------------------------------------------------- /asma/asmcards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/asmcards.py -------------------------------------------------------------------------------- /asma/asmconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/asmconfig.py -------------------------------------------------------------------------------- /asma/asmdcds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/asmdcds.py -------------------------------------------------------------------------------- /asma/asminput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/asminput.py -------------------------------------------------------------------------------- /asma/asmline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/asmline.py -------------------------------------------------------------------------------- /asma/asmlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/asmlist.py -------------------------------------------------------------------------------- /asma/asmlocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/asmlocal.py -------------------------------------------------------------------------------- /asma/asmmacs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/asmmacs.py -------------------------------------------------------------------------------- /asma/asmoper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/asmoper.py -------------------------------------------------------------------------------- /asma/asmopnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/asmopnd.py -------------------------------------------------------------------------------- /asma/asmstmts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/asmstmts.py -------------------------------------------------------------------------------- /asma/asmtokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/asmtokens.py -------------------------------------------------------------------------------- /asma/assembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/assembler.py -------------------------------------------------------------------------------- /asma/cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/cards.py -------------------------------------------------------------------------------- /asma/insnbldr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/insnbldr.py -------------------------------------------------------------------------------- /asma/literal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/literal.py -------------------------------------------------------------------------------- /asma/lnkbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/lnkbase.py -------------------------------------------------------------------------------- /asma/macopnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/macopnd.py -------------------------------------------------------------------------------- /asma/macsyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/macsyms.py -------------------------------------------------------------------------------- /asma/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/model.py -------------------------------------------------------------------------------- /asma/msl/PoO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/msl/PoO.txt -------------------------------------------------------------------------------- /asma/msl/all-insn.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/msl/all-insn.msl -------------------------------------------------------------------------------- /asma/msl/e370-insn.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/msl/e370-insn.msl -------------------------------------------------------------------------------- /asma/msl/e390-insn.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/msl/e390-insn.msl -------------------------------------------------------------------------------- /asma/msl/formats.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/msl/formats.msl -------------------------------------------------------------------------------- /asma/msl/s360-insn.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/msl/s360-insn.msl -------------------------------------------------------------------------------- /asma/msl/s370-insn.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/msl/s370-insn.msl -------------------------------------------------------------------------------- /asma/msl/s370XA-insn.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/msl/s370XA-insn.msl -------------------------------------------------------------------------------- /asma/msl/s380-insn.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/msl/s380-insn.msl -------------------------------------------------------------------------------- /asma/msl/s390x-insn.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/msl/s390x-insn.msl -------------------------------------------------------------------------------- /asma/msl/zem-insn.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/msl/zem-insn.msl -------------------------------------------------------------------------------- /asma/msldb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/msldb.py -------------------------------------------------------------------------------- /asma/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/parsers.py -------------------------------------------------------------------------------- /asma/tests/chars/asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/tests/chars/asm -------------------------------------------------------------------------------- /asma/tests/chars/asma-20210416.102259.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/tests/chars/asma-20210416.102259.txt -------------------------------------------------------------------------------- /asma/tests/chars/chars.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/tests/chars/chars.asm -------------------------------------------------------------------------------- /asma/tests/chars/chars.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/tests/chars/chars.hex -------------------------------------------------------------------------------- /asma/tests/chars/chars.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/tests/chars/chars.odt -------------------------------------------------------------------------------- /asma/tests/chars/chars.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/tests/chars/chars.pdf -------------------------------------------------------------------------------- /asma/tests/chars/chrstst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/tests/chars/chrstst.py -------------------------------------------------------------------------------- /asma/tests/chars/hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/tests/chars/hex -------------------------------------------------------------------------------- /asma/tests/chars/listing.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/tests/chars/listing.hex -------------------------------------------------------------------------------- /asma/tests/chars/py128.txt: -------------------------------------------------------------------------------- 1 |  2 |  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ -------------------------------------------------------------------------------- /asma/tests/chars/src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/asma/tests/chars/src -------------------------------------------------------------------------------- /doc/BLS.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/BLS.odt -------------------------------------------------------------------------------- /doc/BLS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/BLS.pdf -------------------------------------------------------------------------------- /doc/Configuration.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/Configuration.odt -------------------------------------------------------------------------------- /doc/Configuration.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/Configuration.pdf -------------------------------------------------------------------------------- /doc/GIM.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/GIM.odt -------------------------------------------------------------------------------- /doc/GIM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/GIM.pdf -------------------------------------------------------------------------------- /doc/Guide.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/Guide.odt -------------------------------------------------------------------------------- /doc/Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/Guide.pdf -------------------------------------------------------------------------------- /doc/SATK - Machine Specification Language - v0.1.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/SATK - Machine Specification Language - v0.1.odt -------------------------------------------------------------------------------- /doc/SATK for s390 - DASD Volume Standard.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/SATK for s390 - DASD Volume Standard.odt -------------------------------------------------------------------------------- /doc/SATK for s390 - Introduction to Mainframe Bare-metal Programming.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/SATK for s390 - Introduction to Mainframe Bare-metal Programming.odt -------------------------------------------------------------------------------- /doc/SATK for s390 - Language Processing Tools.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/SATK for s390 - Language Processing Tools.odt -------------------------------------------------------------------------------- /doc/SATK for s390 - Standards Conventions and Information.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/SATK for s390 - Standards Conventions and Information.odt -------------------------------------------------------------------------------- /doc/SATK for s390 - The Mainframe Boot Process.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/SATK for s390 - The Mainframe Boot Process.odt -------------------------------------------------------------------------------- /doc/SATK.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/SATK.odt -------------------------------------------------------------------------------- /doc/SATK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/SATK.pdf -------------------------------------------------------------------------------- /doc/XCARD.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/XCARD.odt -------------------------------------------------------------------------------- /doc/XCARD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/XCARD.pdf -------------------------------------------------------------------------------- /doc/asma/ASMA.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/asma/ASMA.odt -------------------------------------------------------------------------------- /doc/asma/ASMA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/asma/ASMA.pdf -------------------------------------------------------------------------------- /doc/asma/IPLASMA.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/asma/IPLASMA.odt -------------------------------------------------------------------------------- /doc/asma/IPLASMA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/asma/IPLASMA.pdf -------------------------------------------------------------------------------- /doc/asma/Instruction_Status.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/asma/Instruction_Status.odt -------------------------------------------------------------------------------- /doc/asma/Instruction_Status.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/asma/Instruction_Status.pdf -------------------------------------------------------------------------------- /doc/asma/MSL.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/asma/MSL.odt -------------------------------------------------------------------------------- /doc/asma/MSL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/asma/MSL.pdf -------------------------------------------------------------------------------- /doc/asma/p41-pratt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/asma/p41-pratt.pdf -------------------------------------------------------------------------------- /doc/fdl-1.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/fdl-1.3.txt -------------------------------------------------------------------------------- /doc/herc/Architecture Comparisons v0.3.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/herc/Architecture Comparisons v0.3.odt -------------------------------------------------------------------------------- /doc/herc/Architecture Comparisons v0.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/herc/Architecture Comparisons v0.3.pdf -------------------------------------------------------------------------------- /doc/herc/FBA Manual.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/herc/FBA Manual.odt -------------------------------------------------------------------------------- /doc/herc/FBA Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/herc/FBA Manual.pdf -------------------------------------------------------------------------------- /doc/herc/FBA_DASD_Structures.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/herc/FBA_DASD_Structures.odt -------------------------------------------------------------------------------- /doc/herc/FBA_DASD_Structures.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/herc/FBA_DASD_Structures.pdf -------------------------------------------------------------------------------- /doc/herc/Undocumented.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/herc/Undocumented.odt -------------------------------------------------------------------------------- /doc/herc/Undocumented.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/herc/Undocumented.pdf -------------------------------------------------------------------------------- /doc/iplelf/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2012,4,1,11,17,58 3 | ViewMode=1 4 | -------------------------------------------------------------------------------- /doc/iplelf/IPL ELF ABI Supplement.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/iplelf/IPL ELF ABI Supplement.odt -------------------------------------------------------------------------------- /doc/iplelf/SATK for s390 - IPL Medium Preparation Processor.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/iplelf/SATK for s390 - IPL Medium Preparation Processor.odt -------------------------------------------------------------------------------- /doc/macros/MemoryMgmt.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/macros/MemoryMgmt.odt -------------------------------------------------------------------------------- /doc/macros/Relocation.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/macros/Relocation.odt -------------------------------------------------------------------------------- /doc/macros/SATK.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/macros/SATK.odt -------------------------------------------------------------------------------- /doc/macros/SATK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/macros/SATK.pdf -------------------------------------------------------------------------------- /doc/macros/func.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/macros/func.odt -------------------------------------------------------------------------------- /doc/macros/func.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/macros/func.pdf -------------------------------------------------------------------------------- /doc/macros/herc.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/macros/herc.odt -------------------------------------------------------------------------------- /doc/macros/herc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/macros/herc.pdf -------------------------------------------------------------------------------- /doc/macros/io.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/macros/io.odt -------------------------------------------------------------------------------- /doc/macros/io.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/macros/io.pdf -------------------------------------------------------------------------------- /doc/macros/sync.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/macros/sync.odt -------------------------------------------------------------------------------- /doc/macros/sync.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/macros/sync.pdf -------------------------------------------------------------------------------- /doc/xforth/xforth.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/xforth/xforth.odt -------------------------------------------------------------------------------- /doc/xforth/xforth.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/doc/xforth/xforth.pdf -------------------------------------------------------------------------------- /lib/s370.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lib/s370.ld -------------------------------------------------------------------------------- /lib/s390.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lib/s390.ld -------------------------------------------------------------------------------- /lib/s390x.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lib/s390x.ld -------------------------------------------------------------------------------- /loaders/fba/s360/basm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s360/basm -------------------------------------------------------------------------------- /loaders/fba/s360/basm-20200907.091311.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s360/basm-20200907.091311.txt -------------------------------------------------------------------------------- /loaders/fba/s360/boot/ASAREGN.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s360/boot/ASAREGN.bin -------------------------------------------------------------------------------- /loaders/fba/s360/boot/LOADER.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s360/boot/LOADER.bin -------------------------------------------------------------------------------- /loaders/fba/s360/boot/fbalodr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s360/boot/fbalodr.txt -------------------------------------------------------------------------------- /loaders/fba/s370/basm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s370/basm -------------------------------------------------------------------------------- /loaders/fba/s370/basm-20200908.061414.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s370/basm-20200908.061414.txt -------------------------------------------------------------------------------- /loaders/fba/s370/boot/ASAREGN.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s370/boot/ASAREGN.bin -------------------------------------------------------------------------------- /loaders/fba/s370/boot/LOADER.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s370/boot/LOADER.bin -------------------------------------------------------------------------------- /loaders/fba/s370/boot/fbalodr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s370/boot/fbalodr.txt -------------------------------------------------------------------------------- /loaders/fba/s390/basm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s390/basm -------------------------------------------------------------------------------- /loaders/fba/s390/basm-20200908.064328.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s390/basm-20200908.064328.txt -------------------------------------------------------------------------------- /loaders/fba/s390/boot/ASAREGN.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s390/boot/ASAREGN.bin -------------------------------------------------------------------------------- /loaders/fba/s390/boot/LOADER.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s390/boot/LOADER.bin -------------------------------------------------------------------------------- /loaders/fba/s390/boot/fbalodr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s390/boot/fbalodr.txt -------------------------------------------------------------------------------- /loaders/fba/s390x/basm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s390x/basm -------------------------------------------------------------------------------- /loaders/fba/s390x/basm-20200908.073244.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s390x/basm-20200908.073244.txt -------------------------------------------------------------------------------- /loaders/fba/s390x/boot/ASAREGN.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s390x/boot/ASAREGN.bin -------------------------------------------------------------------------------- /loaders/fba/s390x/boot/LOADER.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s390x/boot/LOADER.bin -------------------------------------------------------------------------------- /loaders/fba/s390x/boot/fbalodr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/loaders/fba/s390x/boot/fbalodr.txt -------------------------------------------------------------------------------- /lodrmac/AARCH.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/AARCH.mac -------------------------------------------------------------------------------- /lodrmac/BLASALD.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/BLASALD.mac -------------------------------------------------------------------------------- /lodrmac/BLCOMMON.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/BLCOMMON.mac -------------------------------------------------------------------------------- /lodrmac/BLINIT.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/BLINIT.mac -------------------------------------------------------------------------------- /lodrmac/BLMEM.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/BLMEM.mac -------------------------------------------------------------------------------- /lodrmac/BLSASA.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/BLSASA.mac -------------------------------------------------------------------------------- /lodrmac/BLSCALL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/BLSCALL.mac -------------------------------------------------------------------------------- /lodrmac/BLSERR.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/BLSERR.mac -------------------------------------------------------------------------------- /lodrmac/BLSIODS.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/BLSIODS.mac -------------------------------------------------------------------------------- /lodrmac/BLSIOT.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/BLSIOT.mac -------------------------------------------------------------------------------- /lodrmac/BLSORB.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/BLSORB.mac -------------------------------------------------------------------------------- /lodrmac/BLSPB.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/BLSPB.mac -------------------------------------------------------------------------------- /lodrmac/BLSTABLE.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/BLSTABLE.mac -------------------------------------------------------------------------------- /lodrmac/BOOTNTR.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/BOOTNTR.mac -------------------------------------------------------------------------------- /lodrmac/IOTBL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/IOTBL.mac -------------------------------------------------------------------------------- /lodrmac/SAVEAREA.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/SAVEAREA.mac -------------------------------------------------------------------------------- /lodrmac/SERVENAD.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/SERVENAD.mac -------------------------------------------------------------------------------- /lodrmac/SERVEND.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/SERVEND.mac -------------------------------------------------------------------------------- /lodrmac/SERVEXCP.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/SERVEXCP.mac -------------------------------------------------------------------------------- /lodrmac/SERVICE.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/SERVICE.mac -------------------------------------------------------------------------------- /lodrmac/SERVID.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/SERVID.mac -------------------------------------------------------------------------------- /lodrmac/SERVIOIN.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/SERVIOIN.mac -------------------------------------------------------------------------------- /lodrmac/SERVNOOP.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/SERVNOOP.mac -------------------------------------------------------------------------------- /lodrmac/SERVPEND.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/SERVPEND.mac -------------------------------------------------------------------------------- /lodrmac/SERVQIOT.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/SERVQIOT.mac -------------------------------------------------------------------------------- /lodrmac/SERVRTN.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/SERVRTN.mac -------------------------------------------------------------------------------- /lodrmac/SERVS.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/SERVS.mac -------------------------------------------------------------------------------- /lodrmac/STLOD1.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/lodrmac/STLOD1.mac -------------------------------------------------------------------------------- /maclib/ACALL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ACALL.mac -------------------------------------------------------------------------------- /maclib/AFUN.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/AFUN.mac -------------------------------------------------------------------------------- /maclib/ANTR.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ANTR.mac -------------------------------------------------------------------------------- /maclib/APROB.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/APROB.mac -------------------------------------------------------------------------------- /maclib/ARCHIND.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ARCHIND.mac -------------------------------------------------------------------------------- /maclib/ARCHLVL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ARCHLVL.mac -------------------------------------------------------------------------------- /maclib/ASAIPL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ASAIPL.mac -------------------------------------------------------------------------------- /maclib/ASALOAD.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ASALOAD.mac -------------------------------------------------------------------------------- /maclib/ASAREA.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ASAREA.mac -------------------------------------------------------------------------------- /maclib/ASAZAREA.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ASAZAREA.mac -------------------------------------------------------------------------------- /maclib/CALL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/CALL.mac -------------------------------------------------------------------------------- /maclib/CALLR.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/CALLR.mac -------------------------------------------------------------------------------- /maclib/CPUWAIT.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/CPUWAIT.mac -------------------------------------------------------------------------------- /maclib/CZAM.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/CZAM.mac -------------------------------------------------------------------------------- /maclib/DSECTS.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/DSECTS.mac -------------------------------------------------------------------------------- /maclib/DWAIT.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/DWAIT.mac -------------------------------------------------------------------------------- /maclib/DWAITEND.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/DWAITEND.mac -------------------------------------------------------------------------------- /maclib/ENADEV.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ENADEV.mac -------------------------------------------------------------------------------- /maclib/ESA390.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ESA390.mac -------------------------------------------------------------------------------- /maclib/FRAME.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/FRAME.mac -------------------------------------------------------------------------------- /maclib/FUNCTION.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/FUNCTION.mac -------------------------------------------------------------------------------- /maclib/HRCCMD.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/HRCCMD.mac -------------------------------------------------------------------------------- /maclib/HRCIPLP.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/HRCIPLP.mac -------------------------------------------------------------------------------- /maclib/ICALL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ICALL.mac -------------------------------------------------------------------------------- /maclib/IFUN.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/IFUN.mac -------------------------------------------------------------------------------- /maclib/IOCB.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/IOCB.mac -------------------------------------------------------------------------------- /maclib/IOCBDS.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/IOCBDS.mac -------------------------------------------------------------------------------- /maclib/IOFMT.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/IOFMT.mac -------------------------------------------------------------------------------- /maclib/IOINIT.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/IOINIT.mac -------------------------------------------------------------------------------- /maclib/IOTRFR.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/IOTRFR.mac -------------------------------------------------------------------------------- /maclib/LOADHL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/LOADHL.mac -------------------------------------------------------------------------------- /maclib/LOCAL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/LOCAL.mac -------------------------------------------------------------------------------- /maclib/LOD1.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/LOD1.mac -------------------------------------------------------------------------------- /maclib/LTEST.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/LTEST.mac -------------------------------------------------------------------------------- /maclib/MEMSZ.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/MEMSZ.mac -------------------------------------------------------------------------------- /maclib/MEMSZS.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/MEMSZS.mac -------------------------------------------------------------------------------- /maclib/ORB.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ORB.mac -------------------------------------------------------------------------------- /maclib/POINTER.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/POINTER.mac -------------------------------------------------------------------------------- /maclib/PSWFMT.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/PSWFMT.mac -------------------------------------------------------------------------------- /maclib/RAWAIT.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/RAWAIT.mac -------------------------------------------------------------------------------- /maclib/RAWIO.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/RAWIO.mac -------------------------------------------------------------------------------- /maclib/REGEQU.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/REGEQU.mac -------------------------------------------------------------------------------- /maclib/RETURN.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/RETURN.mac -------------------------------------------------------------------------------- /maclib/SCALL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/SCALL.mac -------------------------------------------------------------------------------- /maclib/SCPI.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/SCPI.mac -------------------------------------------------------------------------------- /maclib/SETZ.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/SETZ.mac -------------------------------------------------------------------------------- /maclib/SFUN.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/SFUN.mac -------------------------------------------------------------------------------- /maclib/SIGCPU.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/SIGCPU.mac -------------------------------------------------------------------------------- /maclib/SMMGR.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/SMMGR.mac -------------------------------------------------------------------------------- /maclib/SMMGRB.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/SMMGRB.mac -------------------------------------------------------------------------------- /maclib/STACK.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/STACK.mac -------------------------------------------------------------------------------- /maclib/STCCWADR.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/STCCWADR.mac -------------------------------------------------------------------------------- /maclib/STCCWCNT.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/STCCWCNT.mac -------------------------------------------------------------------------------- /maclib/STKINIT.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/STKINIT.mac -------------------------------------------------------------------------------- /maclib/TRAP128.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/TRAP128.mac -------------------------------------------------------------------------------- /maclib/TRAP64.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/TRAP64.mac -------------------------------------------------------------------------------- /maclib/TRAPS.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/TRAPS.mac -------------------------------------------------------------------------------- /maclib/VMOVE.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/VMOVE.mac -------------------------------------------------------------------------------- /maclib/ZARCH.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ZARCH.mac -------------------------------------------------------------------------------- /maclib/ZEROH.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ZEROH.mac -------------------------------------------------------------------------------- /maclib/ZEROL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ZEROL.mac -------------------------------------------------------------------------------- /maclib/ZEROLH.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ZEROLH.mac -------------------------------------------------------------------------------- /maclib/ZEROLL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/maclib/ZEROLL.mac -------------------------------------------------------------------------------- /mmmac/ALLOCH.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/mmmac/ALLOCH.mac -------------------------------------------------------------------------------- /mmmac/ALLOCL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/mmmac/ALLOCL.mac -------------------------------------------------------------------------------- /mmmac/DEFPOOL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/mmmac/DEFPOOL.mac -------------------------------------------------------------------------------- /mmmac/MEMPOOL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/mmmac/MEMPOOL.mac -------------------------------------------------------------------------------- /qemulib/CONSINIT.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/qemulib/CONSINIT.mac -------------------------------------------------------------------------------- /qemulib/CONSWRIT.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/qemulib/CONSWRIT.mac -------------------------------------------------------------------------------- /qemulib/LGCALL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/qemulib/LGCALL.mac -------------------------------------------------------------------------------- /qemulib/LGNTR.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/qemulib/LGNTR.mac -------------------------------------------------------------------------------- /qemulib/LGSA.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/qemulib/LGSA.mac -------------------------------------------------------------------------------- /qemulib/LGXIT.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/qemulib/LGXIT.mac -------------------------------------------------------------------------------- /qemulib/PDIE.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/qemulib/PDIE.mac -------------------------------------------------------------------------------- /qemulib/QEMU.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/qemulib/QEMU.mac -------------------------------------------------------------------------------- /qemulib/SPIF.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/qemulib/SPIF.mac -------------------------------------------------------------------------------- /qemulib/SPIFINIT.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/qemulib/SPIFINIT.mac -------------------------------------------------------------------------------- /relomac/COPYSELF.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/relomac/COPYSELF.mac -------------------------------------------------------------------------------- /relomac/RELOCALL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/relomac/RELOCALL.mac -------------------------------------------------------------------------------- /relomac/RELOCATE.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/relomac/RELOCATE.mac -------------------------------------------------------------------------------- /relomac/RTABLE.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/relomac/RTABLE.mac -------------------------------------------------------------------------------- /relomac/RTBL.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/relomac/RTBL.mac -------------------------------------------------------------------------------- /relomac/RTBLEND.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/relomac/RTBLEND.mac -------------------------------------------------------------------------------- /samples/asma/dsects.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/asma/dsects.asm -------------------------------------------------------------------------------- /samples/asma/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/asma/hello.asm -------------------------------------------------------------------------------- /samples/asma/hellof.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/asma/hellof.asm -------------------------------------------------------------------------------- /samples/asma/hellofm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/asma/hellofm.asm -------------------------------------------------------------------------------- /samples/asma/sos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/asma/sos.asm -------------------------------------------------------------------------------- /samples/decklodr/exeinobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/decklodr/exeinobj -------------------------------------------------------------------------------- /samples/decklodr/s370/s370.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/decklodr/s370/s370.conf -------------------------------------------------------------------------------- /samples/decklodr/s370/s370.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/decklodr/s370/s370.rc -------------------------------------------------------------------------------- /samples/decklodr/s370bc/s370bc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/decklodr/s370bc/s370bc.conf -------------------------------------------------------------------------------- /samples/decklodr/s370bc/s370bc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/decklodr/s370bc/s370bc.rc -------------------------------------------------------------------------------- /samples/decklodr/s390/s390.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/decklodr/s390/s390.conf -------------------------------------------------------------------------------- /samples/decklodr/s390/s390.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/decklodr/s390/s390.rc -------------------------------------------------------------------------------- /samples/decklodr/s390x/s390x.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/decklodr/s390x/s390x.conf -------------------------------------------------------------------------------- /samples/decklodr/s390x/s390x.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/decklodr/s390x/s390x.rc -------------------------------------------------------------------------------- /samples/embedded/card/cardmbed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/card/cardmbed.conf -------------------------------------------------------------------------------- /samples/embedded/card/cardmbed.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/card/cardmbed.rc -------------------------------------------------------------------------------- /samples/embedded/card/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/card/default.conf -------------------------------------------------------------------------------- /samples/embedded/card/default.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/card/default.rc -------------------------------------------------------------------------------- /samples/embedded/cdrom/cdrommbed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/cdrom/cdrommbed.conf -------------------------------------------------------------------------------- /samples/embedded/cdrom/cdrommbed.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/cdrom/cdrommbed.rc -------------------------------------------------------------------------------- /samples/embedded/cdrom/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/cdrom/default.conf -------------------------------------------------------------------------------- /samples/embedded/cdrom/default.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/cdrom/default.rc -------------------------------------------------------------------------------- /samples/embedded/ckd/ckdmbed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/ckd/ckdmbed.conf -------------------------------------------------------------------------------- /samples/embedded/ckd/ckdmbed.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/ckd/ckdmbed.rc -------------------------------------------------------------------------------- /samples/embedded/ckd/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/ckd/default.conf -------------------------------------------------------------------------------- /samples/embedded/ckd/default.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/ckd/default.rc -------------------------------------------------------------------------------- /samples/embedded/embed.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/embed.S -------------------------------------------------------------------------------- /samples/embedded/fba/s370/build/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2013,6,17,10,25,23 3 | ViewMode=1 4 | -------------------------------------------------------------------------------- /samples/embedded/fba/s370/build/embed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370/build/embed -------------------------------------------------------------------------------- /samples/embedded/fba/s370/build/embed.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370/build/embed.exe.txt -------------------------------------------------------------------------------- /samples/embedded/fba/s370/build/embed.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370/build/embed.lds -------------------------------------------------------------------------------- /samples/embedded/fba/s370/build/embed.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370/build/embed.lst -------------------------------------------------------------------------------- /samples/embedded/fba/s370/build/embed.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370/build/embed.map -------------------------------------------------------------------------------- /samples/embedded/fba/s370/build/embed.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370/build/embed.o -------------------------------------------------------------------------------- /samples/embedded/fba/s370/build/embed.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370/build/embed.obj.txt -------------------------------------------------------------------------------- /samples/embedded/fba/s370/build/embed.s370: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370/build/embed.s370 -------------------------------------------------------------------------------- /samples/embedded/fba/s370/embed.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370/embed.3310 -------------------------------------------------------------------------------- /samples/embedded/fba/s370/embed.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370/embed.3310.debug.txt -------------------------------------------------------------------------------- /samples/embedded/fba/s370/hercules.sand.20130617.102721.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370/hercules.sand.20130617.102721.log -------------------------------------------------------------------------------- /samples/embedded/fba/s370/s370.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370/s370.conf -------------------------------------------------------------------------------- /samples/embedded/fba/s370/s370.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370/s370.rc -------------------------------------------------------------------------------- /samples/embedded/fba/s370bc/build/embed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370bc/build/embed -------------------------------------------------------------------------------- /samples/embedded/fba/s370bc/build/embed.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370bc/build/embed.exe.txt -------------------------------------------------------------------------------- /samples/embedded/fba/s370bc/build/embed.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370bc/build/embed.lds -------------------------------------------------------------------------------- /samples/embedded/fba/s370bc/build/embed.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370bc/build/embed.lst -------------------------------------------------------------------------------- /samples/embedded/fba/s370bc/build/embed.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370bc/build/embed.map -------------------------------------------------------------------------------- /samples/embedded/fba/s370bc/build/embed.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370bc/build/embed.o -------------------------------------------------------------------------------- /samples/embedded/fba/s370bc/build/embed.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370bc/build/embed.obj.txt -------------------------------------------------------------------------------- /samples/embedded/fba/s370bc/build/embed.s370: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370bc/build/embed.s370 -------------------------------------------------------------------------------- /samples/embedded/fba/s370bc/embed.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370bc/embed.3310 -------------------------------------------------------------------------------- /samples/embedded/fba/s370bc/embed.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370bc/embed.3310.debug.txt -------------------------------------------------------------------------------- /samples/embedded/fba/s370bc/hercules.sand.20130617.123535.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370bc/hercules.sand.20130617.123535.log -------------------------------------------------------------------------------- /samples/embedded/fba/s370bc/s370bc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370bc/s370bc.conf -------------------------------------------------------------------------------- /samples/embedded/fba/s370bc/s370bc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s370bc/s370bc.rc -------------------------------------------------------------------------------- /samples/embedded/fba/s390/build/embed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390/build/embed -------------------------------------------------------------------------------- /samples/embedded/fba/s390/build/embed.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390/build/embed.exe.txt -------------------------------------------------------------------------------- /samples/embedded/fba/s390/build/embed.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390/build/embed.lds -------------------------------------------------------------------------------- /samples/embedded/fba/s390/build/embed.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390/build/embed.lst -------------------------------------------------------------------------------- /samples/embedded/fba/s390/build/embed.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390/build/embed.map -------------------------------------------------------------------------------- /samples/embedded/fba/s390/build/embed.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390/build/embed.o -------------------------------------------------------------------------------- /samples/embedded/fba/s390/build/embed.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390/build/embed.obj.txt -------------------------------------------------------------------------------- /samples/embedded/fba/s390/embed.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390/embed.3310 -------------------------------------------------------------------------------- /samples/embedded/fba/s390/embed.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390/embed.3310.debug.txt -------------------------------------------------------------------------------- /samples/embedded/fba/s390/hercules.sand.20130617.143117.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390/hercules.sand.20130617.143117.log -------------------------------------------------------------------------------- /samples/embedded/fba/s390/s390.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390/s390.conf -------------------------------------------------------------------------------- /samples/embedded/fba/s390/s390.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390/s390.rc -------------------------------------------------------------------------------- /samples/embedded/fba/s390x/build/embed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390x/build/embed -------------------------------------------------------------------------------- /samples/embedded/fba/s390x/build/embed.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390x/build/embed.exe.txt -------------------------------------------------------------------------------- /samples/embedded/fba/s390x/build/embed.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390x/build/embed.lds -------------------------------------------------------------------------------- /samples/embedded/fba/s390x/build/embed.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390x/build/embed.lst -------------------------------------------------------------------------------- /samples/embedded/fba/s390x/build/embed.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390x/build/embed.map -------------------------------------------------------------------------------- /samples/embedded/fba/s390x/build/embed.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390x/build/embed.o -------------------------------------------------------------------------------- /samples/embedded/fba/s390x/build/embed.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390x/build/embed.obj.txt -------------------------------------------------------------------------------- /samples/embedded/fba/s390x/embed.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390x/embed.3310 -------------------------------------------------------------------------------- /samples/embedded/fba/s390x/embed.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390x/embed.3310.debug.txt -------------------------------------------------------------------------------- /samples/embedded/fba/s390x/hercules.sand.20130617.153628.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390x/hercules.sand.20130617.153628.log -------------------------------------------------------------------------------- /samples/embedded/fba/s390x/s390x.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390x/s390x.conf -------------------------------------------------------------------------------- /samples/embedded/fba/s390x/s390x.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/fba/s390x/s390x.rc -------------------------------------------------------------------------------- /samples/embedded/lodrtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/lodrtest -------------------------------------------------------------------------------- /samples/embedded/tape/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/tape/default.conf -------------------------------------------------------------------------------- /samples/embedded/tape/default.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/tape/default.rc -------------------------------------------------------------------------------- /samples/embedded/tape/tapembed.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/tape/tapembed.conf -------------------------------------------------------------------------------- /samples/embedded/tape/tapembed.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/embedded/tape/tapembed.rc -------------------------------------------------------------------------------- /samples/external/extrnal.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/extrnal.S -------------------------------------------------------------------------------- /samples/external/fba/s370/build/extrnal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370/build/extrnal -------------------------------------------------------------------------------- /samples/external/fba/s370/build/extrnal.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370/build/extrnal.exe.txt -------------------------------------------------------------------------------- /samples/external/fba/s370/build/extrnal.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370/build/extrnal.lds -------------------------------------------------------------------------------- /samples/external/fba/s370/build/extrnal.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370/build/extrnal.lst -------------------------------------------------------------------------------- /samples/external/fba/s370/build/extrnal.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370/build/extrnal.map -------------------------------------------------------------------------------- /samples/external/fba/s370/build/extrnal.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370/build/extrnal.o -------------------------------------------------------------------------------- /samples/external/fba/s370/build/extrnal.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370/build/extrnal.obj.txt -------------------------------------------------------------------------------- /samples/external/fba/s370/build/extrnal.s370: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370/build/extrnal.s370 -------------------------------------------------------------------------------- /samples/external/fba/s370/extrnal.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370/extrnal.3310 -------------------------------------------------------------------------------- /samples/external/fba/s370/extrnal.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370/extrnal.3310.debug.txt -------------------------------------------------------------------------------- /samples/external/fba/s370/hercules.sand.20130617.163207.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370/hercules.sand.20130617.163207.log -------------------------------------------------------------------------------- /samples/external/fba/s370/s370.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370/s370.conf -------------------------------------------------------------------------------- /samples/external/fba/s370/s370.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370/s370.rc -------------------------------------------------------------------------------- /samples/external/fba/s370bc/build/extrnal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370bc/build/extrnal -------------------------------------------------------------------------------- /samples/external/fba/s370bc/build/extrnal.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370bc/build/extrnal.exe.txt -------------------------------------------------------------------------------- /samples/external/fba/s370bc/build/extrnal.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370bc/build/extrnal.lds -------------------------------------------------------------------------------- /samples/external/fba/s370bc/build/extrnal.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370bc/build/extrnal.lst -------------------------------------------------------------------------------- /samples/external/fba/s370bc/build/extrnal.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370bc/build/extrnal.map -------------------------------------------------------------------------------- /samples/external/fba/s370bc/build/extrnal.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370bc/build/extrnal.o -------------------------------------------------------------------------------- /samples/external/fba/s370bc/build/extrnal.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370bc/build/extrnal.obj.txt -------------------------------------------------------------------------------- /samples/external/fba/s370bc/build/extrnal.s370: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370bc/build/extrnal.s370 -------------------------------------------------------------------------------- /samples/external/fba/s370bc/extrnal.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370bc/extrnal.3310 -------------------------------------------------------------------------------- /samples/external/fba/s370bc/extrnal.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370bc/extrnal.3310.debug.txt -------------------------------------------------------------------------------- /samples/external/fba/s370bc/hercules.sand.20130617.224003.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370bc/hercules.sand.20130617.224003.log -------------------------------------------------------------------------------- /samples/external/fba/s370bc/s370bc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370bc/s370bc.conf -------------------------------------------------------------------------------- /samples/external/fba/s370bc/s370bc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s370bc/s370bc.rc -------------------------------------------------------------------------------- /samples/external/fba/s390/build/extrnal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390/build/extrnal -------------------------------------------------------------------------------- /samples/external/fba/s390/build/extrnal.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390/build/extrnal.exe.txt -------------------------------------------------------------------------------- /samples/external/fba/s390/build/extrnal.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390/build/extrnal.lds -------------------------------------------------------------------------------- /samples/external/fba/s390/build/extrnal.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390/build/extrnal.lst -------------------------------------------------------------------------------- /samples/external/fba/s390/build/extrnal.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390/build/extrnal.map -------------------------------------------------------------------------------- /samples/external/fba/s390/build/extrnal.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390/build/extrnal.o -------------------------------------------------------------------------------- /samples/external/fba/s390/build/extrnal.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390/build/extrnal.obj.txt -------------------------------------------------------------------------------- /samples/external/fba/s390/extrnal.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390/extrnal.3310 -------------------------------------------------------------------------------- /samples/external/fba/s390/extrnal.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390/extrnal.3310.debug.txt -------------------------------------------------------------------------------- /samples/external/fba/s390/hercules.sand.20130617.225540.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390/hercules.sand.20130617.225540.log -------------------------------------------------------------------------------- /samples/external/fba/s390/s390.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390/s390.conf -------------------------------------------------------------------------------- /samples/external/fba/s390/s390.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390/s390.rc -------------------------------------------------------------------------------- /samples/external/fba/s390x/build/extrnal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390x/build/extrnal -------------------------------------------------------------------------------- /samples/external/fba/s390x/build/extrnal.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390x/build/extrnal.exe.txt -------------------------------------------------------------------------------- /samples/external/fba/s390x/build/extrnal.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390x/build/extrnal.lds -------------------------------------------------------------------------------- /samples/external/fba/s390x/build/extrnal.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390x/build/extrnal.lst -------------------------------------------------------------------------------- /samples/external/fba/s390x/build/extrnal.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390x/build/extrnal.map -------------------------------------------------------------------------------- /samples/external/fba/s390x/build/extrnal.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390x/build/extrnal.o -------------------------------------------------------------------------------- /samples/external/fba/s390x/build/extrnal.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390x/build/extrnal.obj.txt -------------------------------------------------------------------------------- /samples/external/fba/s390x/extrnal.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390x/extrnal.3310 -------------------------------------------------------------------------------- /samples/external/fba/s390x/extrnal.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390x/extrnal.3310.debug.txt -------------------------------------------------------------------------------- /samples/external/fba/s390x/hercules.sand.20130617.230948.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390x/hercules.sand.20130617.230948.log -------------------------------------------------------------------------------- /samples/external/fba/s390x/s390x.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390x/s390x.conf -------------------------------------------------------------------------------- /samples/external/fba/s390x/s390x.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/fba/s390x/s390x.rc -------------------------------------------------------------------------------- /samples/external/lodrtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/external/lodrtest -------------------------------------------------------------------------------- /samples/guide/pgm1/asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm1/asm -------------------------------------------------------------------------------- /samples/guide/pgm1/asma-20200606.094212.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm1/asma-20200606.094212.txt -------------------------------------------------------------------------------- /samples/guide/pgm1/ipl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm1/ipl -------------------------------------------------------------------------------- /samples/guide/pgm1/ldipl/IPLPGM1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm1/ldipl/IPLPGM1.bin -------------------------------------------------------------------------------- /samples/guide/pgm1/ldipl/IPLPSW.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /samples/guide/pgm1/ldipl/pgm1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm1/ldipl/pgm1.txt -------------------------------------------------------------------------------- /samples/guide/pgm1/log-20200606.100241.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm1/log-20200606.100241.txt -------------------------------------------------------------------------------- /samples/guide/pgm1/pgm1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm1/pgm1.asm -------------------------------------------------------------------------------- /samples/guide/pgm1/pgm1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm1/pgm1.conf -------------------------------------------------------------------------------- /samples/guide/pgm1/pgm1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm1/pgm1.rc -------------------------------------------------------------------------------- /samples/guide/pgm1/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm1/run -------------------------------------------------------------------------------- /samples/guide/pgm2/ipl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm2/ipl -------------------------------------------------------------------------------- /samples/guide/pgm2/iplasma-20200609.072506.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm2/iplasma-20200609.072506.txt -------------------------------------------------------------------------------- /samples/guide/pgm2/ldipl/IPLPGM1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm2/ldipl/IPLPGM1.bin -------------------------------------------------------------------------------- /samples/guide/pgm2/ldipl/IPLPSW.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /samples/guide/pgm2/ldipl/pgm1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm2/ldipl/pgm1.txt -------------------------------------------------------------------------------- /samples/guide/pgm2/log-20200609.072735.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm2/log-20200609.072735.txt -------------------------------------------------------------------------------- /samples/guide/pgm2/med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm2/med -------------------------------------------------------------------------------- /samples/guide/pgm2/pgm2.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm2/pgm2.3310 -------------------------------------------------------------------------------- /samples/guide/pgm2/pgm2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm2/pgm2.conf -------------------------------------------------------------------------------- /samples/guide/pgm2/pgm2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm2/pgm2.rc -------------------------------------------------------------------------------- /samples/guide/pgm3/asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm3/asm -------------------------------------------------------------------------------- /samples/guide/pgm3/asma-20200614.230035.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm3/asma-20200614.230035.txt -------------------------------------------------------------------------------- /samples/guide/pgm3/asma-20220827.084845.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm3/asma-20220827.084845.txt -------------------------------------------------------------------------------- /samples/guide/pgm3/ipl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm3/ipl -------------------------------------------------------------------------------- /samples/guide/pgm3/iplasma-20220827.091420.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm3/iplasma-20220827.091420.txt -------------------------------------------------------------------------------- /samples/guide/pgm3/ldipl/ASAREGN.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm3/ldipl/ASAREGN.bin -------------------------------------------------------------------------------- /samples/guide/pgm3/ldipl/IPLPGM3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm3/ldipl/IPLPGM3.bin -------------------------------------------------------------------------------- /samples/guide/pgm3/ldipl/pgm3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm3/ldipl/pgm3.txt -------------------------------------------------------------------------------- /samples/guide/pgm3/log-20220827.091156.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm3/log-20220827.091156.txt -------------------------------------------------------------------------------- /samples/guide/pgm3/med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm3/med -------------------------------------------------------------------------------- /samples/guide/pgm3/pgm3.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm3/pgm3.3310 -------------------------------------------------------------------------------- /samples/guide/pgm3/pgm3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm3/pgm3.asm -------------------------------------------------------------------------------- /samples/guide/pgm3/pgm3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm3/pgm3.conf -------------------------------------------------------------------------------- /samples/guide/pgm3/pgm3.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm3/pgm3.rc -------------------------------------------------------------------------------- /samples/guide/pgm4/asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/asm -------------------------------------------------------------------------------- /samples/guide/pgm4/asma-20200720.144552.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/asma-20200720.144552.txt -------------------------------------------------------------------------------- /samples/guide/pgm4/asma-20220827.100406.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/asma-20220827.100406.txt -------------------------------------------------------------------------------- /samples/guide/pgm4/basm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/basm -------------------------------------------------------------------------------- /samples/guide/pgm4/basma-20200720.145049.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/basma-20200720.145049.txt -------------------------------------------------------------------------------- /samples/guide/pgm4/basma-20220827.125522.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/basma-20220827.125522.txt -------------------------------------------------------------------------------- /samples/guide/pgm4/boot/ASAREGN.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/boot/ASAREGN.bin -------------------------------------------------------------------------------- /samples/guide/pgm4/boot/BOOT4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/boot/BOOT4.bin -------------------------------------------------------------------------------- /samples/guide/pgm4/boot/boot4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/boot/boot4.txt -------------------------------------------------------------------------------- /samples/guide/pgm4/boot4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/boot4.asm -------------------------------------------------------------------------------- /samples/guide/pgm4/ipl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/ipl -------------------------------------------------------------------------------- /samples/guide/pgm4/iplasma-20220827.125816.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/iplasma-20220827.125816.txt -------------------------------------------------------------------------------- /samples/guide/pgm4/ldipl/ASAREGN.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/ldipl/ASAREGN.bin -------------------------------------------------------------------------------- /samples/guide/pgm4/ldipl/BOOTED4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/ldipl/BOOTED4.bin -------------------------------------------------------------------------------- /samples/guide/pgm4/ldipl/pgm4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/ldipl/pgm4.txt -------------------------------------------------------------------------------- /samples/guide/pgm4/log-20200906.063426.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/log-20200906.063426.txt -------------------------------------------------------------------------------- /samples/guide/pgm4/log-20220827.130426.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/log-20220827.130426.txt -------------------------------------------------------------------------------- /samples/guide/pgm4/med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/med -------------------------------------------------------------------------------- /samples/guide/pgm4/pgm4.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/pgm4.3310 -------------------------------------------------------------------------------- /samples/guide/pgm4/pgm4.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/pgm4.asm -------------------------------------------------------------------------------- /samples/guide/pgm4/pgm4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/pgm4.conf -------------------------------------------------------------------------------- /samples/guide/pgm4/pgm4.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm4/pgm4.rc -------------------------------------------------------------------------------- /samples/guide/pgm5/s360/asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s360/asm -------------------------------------------------------------------------------- /samples/guide/pgm5/s360/asma-20200908.053139.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s360/asma-20200908.053139.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s360/ipl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s360/ipl -------------------------------------------------------------------------------- /samples/guide/pgm5/s360/iplasma-20200908.053146.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s360/iplasma-20200908.053146.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s360/ldipl/ASAREGN.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s360/ldipl/ASAREGN.bin -------------------------------------------------------------------------------- /samples/guide/pgm5/s360/ldipl/BOOTED5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s360/ldipl/BOOTED5.bin -------------------------------------------------------------------------------- /samples/guide/pgm5/s360/ldipl/pgm5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s360/ldipl/pgm5.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s360/log-20200908.053253.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s360/log-20200908.053253.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s360/med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s360/med -------------------------------------------------------------------------------- /samples/guide/pgm5/s360/pgm5.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s360/pgm5.3310 -------------------------------------------------------------------------------- /samples/guide/pgm5/s360/pgm5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s360/pgm5.asm -------------------------------------------------------------------------------- /samples/guide/pgm5/s360/pgm5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s360/pgm5.conf -------------------------------------------------------------------------------- /samples/guide/pgm5/s360/pgm5.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s360/pgm5.rc -------------------------------------------------------------------------------- /samples/guide/pgm5/s370/asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s370/asm -------------------------------------------------------------------------------- /samples/guide/pgm5/s370/asma-20200908.060727.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s370/asma-20200908.060727.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s370/ipl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s370/ipl -------------------------------------------------------------------------------- /samples/guide/pgm5/s370/iplasma-20200908.062234.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s370/iplasma-20200908.062234.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s370/ldipl/ASAREGN.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s370/ldipl/ASAREGN.bin -------------------------------------------------------------------------------- /samples/guide/pgm5/s370/ldipl/BOOTED5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s370/ldipl/BOOTED5.bin -------------------------------------------------------------------------------- /samples/guide/pgm5/s370/ldipl/pgm5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s370/ldipl/pgm5.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s370/log-20200908.062612.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s370/log-20200908.062612.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s370/med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s370/med -------------------------------------------------------------------------------- /samples/guide/pgm5/s370/pgm5.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s370/pgm5.3310 -------------------------------------------------------------------------------- /samples/guide/pgm5/s370/pgm5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s370/pgm5.asm -------------------------------------------------------------------------------- /samples/guide/pgm5/s370/pgm5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s370/pgm5.conf -------------------------------------------------------------------------------- /samples/guide/pgm5/s370/pgm5.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s370/pgm5.rc -------------------------------------------------------------------------------- /samples/guide/pgm5/s390/asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390/asm -------------------------------------------------------------------------------- /samples/guide/pgm5/s390/asma-20200908.065153.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390/asma-20200908.065153.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s390/ipl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390/ipl -------------------------------------------------------------------------------- /samples/guide/pgm5/s390/iplasma-20200908.065448.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390/iplasma-20200908.065448.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s390/ldipl/ASAREGN.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390/ldipl/ASAREGN.bin -------------------------------------------------------------------------------- /samples/guide/pgm5/s390/ldipl/BOOTED5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390/ldipl/BOOTED5.bin -------------------------------------------------------------------------------- /samples/guide/pgm5/s390/ldipl/pgm5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390/ldipl/pgm5.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s390/log-20200908.070321.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390/log-20200908.070321.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s390/med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390/med -------------------------------------------------------------------------------- /samples/guide/pgm5/s390/pgm5.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390/pgm5.3310 -------------------------------------------------------------------------------- /samples/guide/pgm5/s390/pgm5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390/pgm5.asm -------------------------------------------------------------------------------- /samples/guide/pgm5/s390/pgm5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390/pgm5.conf -------------------------------------------------------------------------------- /samples/guide/pgm5/s390/pgm5.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390/pgm5.rc -------------------------------------------------------------------------------- /samples/guide/pgm5/s390x/asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390x/asm -------------------------------------------------------------------------------- /samples/guide/pgm5/s390x/asma-20200908.072544.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390x/asma-20200908.072544.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s390x/ipl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390x/ipl -------------------------------------------------------------------------------- /samples/guide/pgm5/s390x/iplasma-20200908.073002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390x/iplasma-20200908.073002.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s390x/ldipl/ASAREGN.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390x/ldipl/ASAREGN.bin -------------------------------------------------------------------------------- /samples/guide/pgm5/s390x/ldipl/pgm5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390x/ldipl/pgm5.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s390x/log-20200908.074450.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390x/log-20200908.074450.txt -------------------------------------------------------------------------------- /samples/guide/pgm5/s390x/med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390x/med -------------------------------------------------------------------------------- /samples/guide/pgm5/s390x/pgm5.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390x/pgm5.3310 -------------------------------------------------------------------------------- /samples/guide/pgm5/s390x/pgm5.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390x/pgm5.asm -------------------------------------------------------------------------------- /samples/guide/pgm5/s390x/pgm5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390x/pgm5.conf -------------------------------------------------------------------------------- /samples/guide/pgm5/s390x/pgm5.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/guide/pgm5/s390x/pgm5.rc -------------------------------------------------------------------------------- /samples/ihandlers/ih.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/ihandlers/ih.S -------------------------------------------------------------------------------- /samples/ihandlers/ihtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/ihandlers/ihtest -------------------------------------------------------------------------------- /samples/ihandlers/s370/s370.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/ihandlers/s370/s370.conf -------------------------------------------------------------------------------- /samples/ihandlers/s370/s370.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/ihandlers/s370/s370.rc -------------------------------------------------------------------------------- /samples/ihandlers/s370bc/s370bc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/ihandlers/s370bc/s370bc.conf -------------------------------------------------------------------------------- /samples/ihandlers/s370bc/s370bc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/ihandlers/s370bc/s370bc.rc -------------------------------------------------------------------------------- /samples/ihandlers/s390/s390.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/ihandlers/s390/s390.conf -------------------------------------------------------------------------------- /samples/ihandlers/s390/s390.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/ihandlers/s390/s390.rc -------------------------------------------------------------------------------- /samples/ihandlers/s390x/s390x.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/ihandlers/s390x/s390x.conf -------------------------------------------------------------------------------- /samples/ihandlers/s390x/s390x.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/ihandlers/s390x/s390x.rc -------------------------------------------------------------------------------- /samples/imlfun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/imlfun -------------------------------------------------------------------------------- /samples/iplelf/fba/s370/build/iplelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370/build/iplelf -------------------------------------------------------------------------------- /samples/iplelf/fba/s370/build/iplelf.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370/build/iplelf.exe.txt -------------------------------------------------------------------------------- /samples/iplelf/fba/s370/build/iplelf.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370/build/iplelf.lds -------------------------------------------------------------------------------- /samples/iplelf/fba/s370/build/iplelf.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370/build/iplelf.lst -------------------------------------------------------------------------------- /samples/iplelf/fba/s370/build/iplelf.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370/build/iplelf.map -------------------------------------------------------------------------------- /samples/iplelf/fba/s370/build/iplelf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370/build/iplelf.o -------------------------------------------------------------------------------- /samples/iplelf/fba/s370/build/iplelf.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370/build/iplelf.obj.txt -------------------------------------------------------------------------------- /samples/iplelf/fba/s370/build/iplelf.s370: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370/build/iplelf.s370 -------------------------------------------------------------------------------- /samples/iplelf/fba/s370/hercules.sand.20130616.133242.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370/hercules.sand.20130616.133242.log -------------------------------------------------------------------------------- /samples/iplelf/fba/s370/iplelf.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370/iplelf.3310 -------------------------------------------------------------------------------- /samples/iplelf/fba/s370/iplelf.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370/iplelf.3310.debug.txt -------------------------------------------------------------------------------- /samples/iplelf/fba/s370/s370.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370/s370.conf -------------------------------------------------------------------------------- /samples/iplelf/fba/s370/s370.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370/s370.rc -------------------------------------------------------------------------------- /samples/iplelf/fba/s370bc/build/iplelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370bc/build/iplelf -------------------------------------------------------------------------------- /samples/iplelf/fba/s370bc/build/iplelf.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370bc/build/iplelf.exe.txt -------------------------------------------------------------------------------- /samples/iplelf/fba/s370bc/build/iplelf.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370bc/build/iplelf.lds -------------------------------------------------------------------------------- /samples/iplelf/fba/s370bc/build/iplelf.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370bc/build/iplelf.lst -------------------------------------------------------------------------------- /samples/iplelf/fba/s370bc/build/iplelf.lst~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370bc/build/iplelf.lst~ -------------------------------------------------------------------------------- /samples/iplelf/fba/s370bc/build/iplelf.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370bc/build/iplelf.map -------------------------------------------------------------------------------- /samples/iplelf/fba/s370bc/build/iplelf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370bc/build/iplelf.o -------------------------------------------------------------------------------- /samples/iplelf/fba/s370bc/build/iplelf.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370bc/build/iplelf.obj.txt -------------------------------------------------------------------------------- /samples/iplelf/fba/s370bc/build/iplelf.s370: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370bc/build/iplelf.s370 -------------------------------------------------------------------------------- /samples/iplelf/fba/s370bc/hercules.sand.20130616.141517.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370bc/hercules.sand.20130616.141517.log -------------------------------------------------------------------------------- /samples/iplelf/fba/s370bc/iplelf.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370bc/iplelf.3310 -------------------------------------------------------------------------------- /samples/iplelf/fba/s370bc/iplelf.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370bc/iplelf.3310.debug.txt -------------------------------------------------------------------------------- /samples/iplelf/fba/s370bc/s370bc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370bc/s370bc.conf -------------------------------------------------------------------------------- /samples/iplelf/fba/s370bc/s370bc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s370bc/s370bc.rc -------------------------------------------------------------------------------- /samples/iplelf/fba/s390/build/iplelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390/build/iplelf -------------------------------------------------------------------------------- /samples/iplelf/fba/s390/build/iplelf.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390/build/iplelf.exe.txt -------------------------------------------------------------------------------- /samples/iplelf/fba/s390/build/iplelf.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390/build/iplelf.lds -------------------------------------------------------------------------------- /samples/iplelf/fba/s390/build/iplelf.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390/build/iplelf.lst -------------------------------------------------------------------------------- /samples/iplelf/fba/s390/build/iplelf.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390/build/iplelf.map -------------------------------------------------------------------------------- /samples/iplelf/fba/s390/build/iplelf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390/build/iplelf.o -------------------------------------------------------------------------------- /samples/iplelf/fba/s390/build/iplelf.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390/build/iplelf.obj.txt -------------------------------------------------------------------------------- /samples/iplelf/fba/s390/hercules.sand.20130616.143107.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390/hercules.sand.20130616.143107.log -------------------------------------------------------------------------------- /samples/iplelf/fba/s390/iplelf.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390/iplelf.3310 -------------------------------------------------------------------------------- /samples/iplelf/fba/s390/iplelf.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390/iplelf.3310.debug.txt -------------------------------------------------------------------------------- /samples/iplelf/fba/s390/s390.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390/s390.conf -------------------------------------------------------------------------------- /samples/iplelf/fba/s390/s390.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390/s390.rc -------------------------------------------------------------------------------- /samples/iplelf/fba/s390x/build/iplelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390x/build/iplelf -------------------------------------------------------------------------------- /samples/iplelf/fba/s390x/build/iplelf.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390x/build/iplelf.exe.txt -------------------------------------------------------------------------------- /samples/iplelf/fba/s390x/build/iplelf.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390x/build/iplelf.lds -------------------------------------------------------------------------------- /samples/iplelf/fba/s390x/build/iplelf.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390x/build/iplelf.lst -------------------------------------------------------------------------------- /samples/iplelf/fba/s390x/build/iplelf.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390x/build/iplelf.map -------------------------------------------------------------------------------- /samples/iplelf/fba/s390x/build/iplelf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390x/build/iplelf.o -------------------------------------------------------------------------------- /samples/iplelf/fba/s390x/build/iplelf.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390x/build/iplelf.obj.txt -------------------------------------------------------------------------------- /samples/iplelf/fba/s390x/hercules.sand.20130616.144505.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390x/hercules.sand.20130616.144505.log -------------------------------------------------------------------------------- /samples/iplelf/fba/s390x/iplelf.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390x/iplelf.3310 -------------------------------------------------------------------------------- /samples/iplelf/fba/s390x/iplelf.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390x/iplelf.3310.debug.txt -------------------------------------------------------------------------------- /samples/iplelf/fba/s390x/s390x.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390x/s390x.conf -------------------------------------------------------------------------------- /samples/iplelf/fba/s390x/s390x.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/fba/s390x/s390x.rc -------------------------------------------------------------------------------- /samples/iplelf/iplelf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/iplelf.S -------------------------------------------------------------------------------- /samples/iplelf/lodrtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/iplelf/lodrtest -------------------------------------------------------------------------------- /samples/textseg/decklodr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/decklodr -------------------------------------------------------------------------------- /samples/textseg/decklodr.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/decklodr.S -------------------------------------------------------------------------------- /samples/textseg/fba/s370/build/textseg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370/build/textseg -------------------------------------------------------------------------------- /samples/textseg/fba/s370/build/textseg.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370/build/textseg.exe.txt -------------------------------------------------------------------------------- /samples/textseg/fba/s370/build/textseg.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370/build/textseg.lds -------------------------------------------------------------------------------- /samples/textseg/fba/s370/build/textseg.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370/build/textseg.lst -------------------------------------------------------------------------------- /samples/textseg/fba/s370/build/textseg.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370/build/textseg.map -------------------------------------------------------------------------------- /samples/textseg/fba/s370/build/textseg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370/build/textseg.o -------------------------------------------------------------------------------- /samples/textseg/fba/s370/build/textseg.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370/build/textseg.obj.txt -------------------------------------------------------------------------------- /samples/textseg/fba/s370/build/textseg.s370: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370/build/textseg.s370 -------------------------------------------------------------------------------- /samples/textseg/fba/s370/hercules.sand.20130616.004242.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370/hercules.sand.20130616.004242.log -------------------------------------------------------------------------------- /samples/textseg/fba/s370/s370.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370/s370.conf -------------------------------------------------------------------------------- /samples/textseg/fba/s370/s370.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370/s370.rc -------------------------------------------------------------------------------- /samples/textseg/fba/s370/textseg.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370/textseg.3310 -------------------------------------------------------------------------------- /samples/textseg/fba/s370/textseg.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370/textseg.3310.debug.txt -------------------------------------------------------------------------------- /samples/textseg/fba/s370bc/build/textseg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370bc/build/textseg -------------------------------------------------------------------------------- /samples/textseg/fba/s370bc/build/textseg.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370bc/build/textseg.exe.txt -------------------------------------------------------------------------------- /samples/textseg/fba/s370bc/build/textseg.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370bc/build/textseg.lds -------------------------------------------------------------------------------- /samples/textseg/fba/s370bc/build/textseg.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370bc/build/textseg.lst -------------------------------------------------------------------------------- /samples/textseg/fba/s370bc/build/textseg.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370bc/build/textseg.map -------------------------------------------------------------------------------- /samples/textseg/fba/s370bc/build/textseg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370bc/build/textseg.o -------------------------------------------------------------------------------- /samples/textseg/fba/s370bc/build/textseg.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370bc/build/textseg.obj.txt -------------------------------------------------------------------------------- /samples/textseg/fba/s370bc/build/textseg.s370: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370bc/build/textseg.s370 -------------------------------------------------------------------------------- /samples/textseg/fba/s370bc/hercules.sand.20130616.074846.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370bc/hercules.sand.20130616.074846.log -------------------------------------------------------------------------------- /samples/textseg/fba/s370bc/s370bc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370bc/s370bc.conf -------------------------------------------------------------------------------- /samples/textseg/fba/s370bc/s370bc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370bc/s370bc.rc -------------------------------------------------------------------------------- /samples/textseg/fba/s370bc/textseg.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370bc/textseg.3310 -------------------------------------------------------------------------------- /samples/textseg/fba/s370bc/textseg.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s370bc/textseg.3310.debug.txt -------------------------------------------------------------------------------- /samples/textseg/fba/s390/build/textseg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390/build/textseg -------------------------------------------------------------------------------- /samples/textseg/fba/s390/build/textseg.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390/build/textseg.exe.txt -------------------------------------------------------------------------------- /samples/textseg/fba/s390/build/textseg.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390/build/textseg.lds -------------------------------------------------------------------------------- /samples/textseg/fba/s390/build/textseg.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390/build/textseg.lst -------------------------------------------------------------------------------- /samples/textseg/fba/s390/build/textseg.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390/build/textseg.map -------------------------------------------------------------------------------- /samples/textseg/fba/s390/build/textseg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390/build/textseg.o -------------------------------------------------------------------------------- /samples/textseg/fba/s390/build/textseg.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390/build/textseg.obj.txt -------------------------------------------------------------------------------- /samples/textseg/fba/s390/hercules.sand.20130616.083022.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390/hercules.sand.20130616.083022.log -------------------------------------------------------------------------------- /samples/textseg/fba/s390/s390.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390/s390.conf -------------------------------------------------------------------------------- /samples/textseg/fba/s390/s390.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390/s390.rc -------------------------------------------------------------------------------- /samples/textseg/fba/s390/textseg.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390/textseg.3310 -------------------------------------------------------------------------------- /samples/textseg/fba/s390/textseg.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390/textseg.3310.debug.txt -------------------------------------------------------------------------------- /samples/textseg/fba/s390x/build/textseg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390x/build/textseg -------------------------------------------------------------------------------- /samples/textseg/fba/s390x/build/textseg.exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390x/build/textseg.exe.txt -------------------------------------------------------------------------------- /samples/textseg/fba/s390x/build/textseg.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390x/build/textseg.lds -------------------------------------------------------------------------------- /samples/textseg/fba/s390x/build/textseg.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390x/build/textseg.lst -------------------------------------------------------------------------------- /samples/textseg/fba/s390x/build/textseg.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390x/build/textseg.map -------------------------------------------------------------------------------- /samples/textseg/fba/s390x/build/textseg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390x/build/textseg.o -------------------------------------------------------------------------------- /samples/textseg/fba/s390x/build/textseg.obj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390x/build/textseg.obj.txt -------------------------------------------------------------------------------- /samples/textseg/fba/s390x/hercules.sand.20130616.084355.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390x/hercules.sand.20130616.084355.log -------------------------------------------------------------------------------- /samples/textseg/fba/s390x/s390x.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390x/s390x.conf -------------------------------------------------------------------------------- /samples/textseg/fba/s390x/s390x.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390x/s390x.rc -------------------------------------------------------------------------------- /samples/textseg/fba/s390x/textseg.3310: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390x/textseg.3310 -------------------------------------------------------------------------------- /samples/textseg/fba/s390x/textseg.3310.debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/fba/s390x/textseg.3310.debug.txt -------------------------------------------------------------------------------- /samples/textseg/lodrtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/lodrtest -------------------------------------------------------------------------------- /samples/textseg/textseg.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/samples/textseg/textseg.S -------------------------------------------------------------------------------- /src/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2012,3,31,19,18,52 3 | ViewMode=1 4 | -------------------------------------------------------------------------------- /src/ABI-lcls.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ABI-lcls.S -------------------------------------------------------------------------------- /src/ABI-s390.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ABI-s390.S -------------------------------------------------------------------------------- /src/ABI-s390x.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ABI-s390x.S -------------------------------------------------------------------------------- /src/ABI.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ABI.S -------------------------------------------------------------------------------- /src/CMS.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/CMS.S -------------------------------------------------------------------------------- /src/CP.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/CP.S -------------------------------------------------------------------------------- /src/EBCDIC.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/EBCDIC.S -------------------------------------------------------------------------------- /src/ELF.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ELF.S -------------------------------------------------------------------------------- /src/ELF32.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ELF32.S -------------------------------------------------------------------------------- /src/ELF64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ELF64.S -------------------------------------------------------------------------------- /src/OBJ.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/OBJ.S -------------------------------------------------------------------------------- /src/SYSIB.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/SYSIB.S -------------------------------------------------------------------------------- /src/arch.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/arch.S -------------------------------------------------------------------------------- /src/archdep.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/archdep.S -------------------------------------------------------------------------------- /src/bitmaps.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/bitmaps.S -------------------------------------------------------------------------------- /src/dF18cmf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/dF18cmf.S -------------------------------------------------------------------------------- /src/dF18pbs.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/dF18pbs.S -------------------------------------------------------------------------------- /src/debug_arch.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/debug_arch.S -------------------------------------------------------------------------------- /src/debug_psw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/debug_psw.S -------------------------------------------------------------------------------- /src/displayf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/displayf.S -------------------------------------------------------------------------------- /src/drivers/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2012,3,31,20,21,5 3 | ViewMode=1 4 | -------------------------------------------------------------------------------- /src/drivers/DRIVER.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/drivers/DRIVER.S -------------------------------------------------------------------------------- /src/drivers/DRIVERS.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/drivers/DRIVERS.README -------------------------------------------------------------------------------- /src/drivers/DRVUTIL.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/drivers/DRVUTIL.S -------------------------------------------------------------------------------- /src/drivers/console.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/drivers/console.S -------------------------------------------------------------------------------- /src/drivers/dev3215.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/drivers/dev3215.S -------------------------------------------------------------------------------- /src/drivers/drivers.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/drivers/drivers.S -------------------------------------------------------------------------------- /src/dwait.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/dwait.S -------------------------------------------------------------------------------- /src/errnotbl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/errnotbl.S -------------------------------------------------------------------------------- /src/formatf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/formatf.S -------------------------------------------------------------------------------- /src/hal/.directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/hal/.directory -------------------------------------------------------------------------------- /src/hal/ASB.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/hal/ASB.S -------------------------------------------------------------------------------- /src/hal/HAL.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/hal/HAL.S -------------------------------------------------------------------------------- /src/hal/IEIB.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/hal/IEIB.S -------------------------------------------------------------------------------- /src/hal/IHCB.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/hal/IHCB.S -------------------------------------------------------------------------------- /src/hal/archal.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/hal/archal.S -------------------------------------------------------------------------------- /src/hal/hals.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/hal/hals.S -------------------------------------------------------------------------------- /src/hal/ihal.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/hal/ihal.S -------------------------------------------------------------------------------- /src/hal/ioal.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/hal/ioal.S -------------------------------------------------------------------------------- /src/hal/ioallo.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/hal/ioallo.S -------------------------------------------------------------------------------- /src/hal/util.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/hal/util.S -------------------------------------------------------------------------------- /src/hracfmac.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/hracfmac.S -------------------------------------------------------------------------------- /src/hracfmod.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/hracfmod.S -------------------------------------------------------------------------------- /src/ihandler.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ihandler.S -------------------------------------------------------------------------------- /src/ihsave.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ihsave.S -------------------------------------------------------------------------------- /src/interrupt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/interrupt.S -------------------------------------------------------------------------------- /src/io.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/io.S -------------------------------------------------------------------------------- /src/iortn.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/iortn.S -------------------------------------------------------------------------------- /src/iortn370.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/iortn370.S -------------------------------------------------------------------------------- /src/ipl.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ipl.S -------------------------------------------------------------------------------- /src/ipl/.directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ipl/.directory -------------------------------------------------------------------------------- /src/ipl/cardmbed.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ipl/cardmbed.S -------------------------------------------------------------------------------- /src/ipl/cdrommbed.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ipl/cdrommbed.S -------------------------------------------------------------------------------- /src/ipl/ckdmbed.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ipl/ckdmbed.S -------------------------------------------------------------------------------- /src/ipl/fbam370.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ipl/fbam370.S -------------------------------------------------------------------------------- /src/ipl/fbambed.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ipl/fbambed.S -------------------------------------------------------------------------------- /src/ipl/include/.directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ipl/include/.directory -------------------------------------------------------------------------------- /src/ipl/include/IPLELF.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ipl/include/IPLELF.S -------------------------------------------------------------------------------- /src/ipl/include/bootnter.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ipl/include/bootnter.S -------------------------------------------------------------------------------- /src/ipl/include/loaderif.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ipl/include/loaderif.S -------------------------------------------------------------------------------- /src/ipl/include/loaders.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ipl/include/loaders.S -------------------------------------------------------------------------------- /src/ipl/tapembed.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/ipl/tapembed.S -------------------------------------------------------------------------------- /src/programf.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/programf.S -------------------------------------------------------------------------------- /src/psw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/psw.S -------------------------------------------------------------------------------- /src/satkpfx.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/satkpfx.S -------------------------------------------------------------------------------- /src/service.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/service.S -------------------------------------------------------------------------------- /src/storage/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2012,3,31,19,18,59 3 | ViewMode=1 4 | -------------------------------------------------------------------------------- /src/storage/STORAGE.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/storage/STORAGE.S -------------------------------------------------------------------------------- /src/storage/memperm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/storage/memperm.S -------------------------------------------------------------------------------- /src/storage/storages.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/storage/storages.S -------------------------------------------------------------------------------- /src/strings.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/strings.S -------------------------------------------------------------------------------- /src/struct.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/struct.S -------------------------------------------------------------------------------- /src/table.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/table.S -------------------------------------------------------------------------------- /src/tracef.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/src/tracef.S -------------------------------------------------------------------------------- /srcasm/hercules.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/srcasm/hercules.mac -------------------------------------------------------------------------------- /srcasm/loader/bls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/srcasm/loader/bls.asm -------------------------------------------------------------------------------- /srcasm/loader/fbalodr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/srcasm/loader/fbalodr.asm -------------------------------------------------------------------------------- /srcasm/satk.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/srcasm/satk.mac -------------------------------------------------------------------------------- /srcasm/selfrelo.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/srcasm/selfrelo.mac -------------------------------------------------------------------------------- /srcasm/table.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/srcasm/table.mac -------------------------------------------------------------------------------- /tools/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2012,3,31,21,19,24 3 | ViewMode=1 4 | -------------------------------------------------------------------------------- /tools/PyELF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/PyELF.py -------------------------------------------------------------------------------- /tools/PyOBJBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/PyOBJBuilder.py -------------------------------------------------------------------------------- /tools/asma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/asma.py -------------------------------------------------------------------------------- /tools/asmafun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/asmafun -------------------------------------------------------------------------------- /tools/bfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/bfp.py -------------------------------------------------------------------------------- /tools/bfp_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/bfp_float.py -------------------------------------------------------------------------------- /tools/bfp_gmpy2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/bfp_gmpy2.py -------------------------------------------------------------------------------- /tools/bintools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/bintools.py -------------------------------------------------------------------------------- /tools/ckaslst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ckaslst.py -------------------------------------------------------------------------------- /tools/codepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/codepage.py -------------------------------------------------------------------------------- /tools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/config.py -------------------------------------------------------------------------------- /tools/deck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/deck.py -------------------------------------------------------------------------------- /tools/dfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/dfp.py -------------------------------------------------------------------------------- /tools/elfs370.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/elfs370.py -------------------------------------------------------------------------------- /tools/fp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/fp.py -------------------------------------------------------------------------------- /tools/fsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/fsm.py -------------------------------------------------------------------------------- /tools/gas_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/gas_factory.py -------------------------------------------------------------------------------- /tools/herc/herc_audit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/herc/herc_audit.py -------------------------------------------------------------------------------- /tools/hopcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/hopcodes.py -------------------------------------------------------------------------------- /tools/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/inventory.py -------------------------------------------------------------------------------- /tools/ipl/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2012,3,31,21,19,19 3 | ViewMode=1 4 | -------------------------------------------------------------------------------- /tools/ipl/ELFXO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/ELFXO.py -------------------------------------------------------------------------------- /tools/ipl/OBJO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/OBJO.py -------------------------------------------------------------------------------- /tools/ipl/OBJX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/OBJX.py -------------------------------------------------------------------------------- /tools/ipl/PyIPLELF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/PyIPLELF.py -------------------------------------------------------------------------------- /tools/ipl/awsutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/awsutil.py -------------------------------------------------------------------------------- /tools/ipl/ccwutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/ccwutil.py -------------------------------------------------------------------------------- /tools/ipl/ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/ci.py -------------------------------------------------------------------------------- /tools/ipl/ckdutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/ckdutil.py -------------------------------------------------------------------------------- /tools/ipl/exeinobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/exeinobj.py -------------------------------------------------------------------------------- /tools/ipl/fbadscb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/fbadscb.py -------------------------------------------------------------------------------- /tools/ipl/fbautil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/fbautil.py -------------------------------------------------------------------------------- /tools/ipl/hexdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/hexdump.py -------------------------------------------------------------------------------- /tools/ipl/ipldpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/ipldpp.py -------------------------------------------------------------------------------- /tools/ipl/iplmed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/iplmed.py -------------------------------------------------------------------------------- /tools/ipl/media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/media.py -------------------------------------------------------------------------------- /tools/ipl/objutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/objutil.py -------------------------------------------------------------------------------- /tools/ipl/rdrpun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/rdrpun.py -------------------------------------------------------------------------------- /tools/ipl/recsutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/recsutil.py -------------------------------------------------------------------------------- /tools/ipl/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/repo.py -------------------------------------------------------------------------------- /tools/ipl/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/structure.py -------------------------------------------------------------------------------- /tools/ipl/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/translate.py -------------------------------------------------------------------------------- /tools/ipl/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ipl/volume.py -------------------------------------------------------------------------------- /tools/iplasma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/iplasma.py -------------------------------------------------------------------------------- /tools/lang/LL1grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/LL1grammar.py -------------------------------------------------------------------------------- /tools/lang/LL1parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/LL1parser.py -------------------------------------------------------------------------------- /tools/lang/expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/expression.py -------------------------------------------------------------------------------- /tools/lang/fsmparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/fsmparser.py -------------------------------------------------------------------------------- /tools/lang/lang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/lang.py -------------------------------------------------------------------------------- /tools/lang/langutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/langutil.py -------------------------------------------------------------------------------- /tools/lang/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/lexer.py -------------------------------------------------------------------------------- /tools/lang/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/parser.py -------------------------------------------------------------------------------- /tools/lang/pratt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/pratt.py -------------------------------------------------------------------------------- /tools/lang/pratt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/pratt2.py -------------------------------------------------------------------------------- /tools/lang/pratt3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/pratt3.py -------------------------------------------------------------------------------- /tools/lang/retest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/retest.py -------------------------------------------------------------------------------- /tools/lang/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/sample.py -------------------------------------------------------------------------------- /tools/lang/seqparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/seqparser.py -------------------------------------------------------------------------------- /tools/lang/sopl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/sopl.py -------------------------------------------------------------------------------- /tools/lang/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lang/syntax.py -------------------------------------------------------------------------------- /tools/ldidlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/ldidlib.py -------------------------------------------------------------------------------- /tools/lds_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/lds_factory.py -------------------------------------------------------------------------------- /tools/listing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/listing.py -------------------------------------------------------------------------------- /tools/medfun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/medfun -------------------------------------------------------------------------------- /tools/msl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/msl.py -------------------------------------------------------------------------------- /tools/mslrpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/mslrpt.py -------------------------------------------------------------------------------- /tools/objlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/objlib.py -------------------------------------------------------------------------------- /tools/qelf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/qelf.py -------------------------------------------------------------------------------- /tools/saconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/saconfig.py -------------------------------------------------------------------------------- /tools/satkfun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/satkfun -------------------------------------------------------------------------------- /tools/satkutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/satkutil.py -------------------------------------------------------------------------------- /tools/specfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/specfile.py -------------------------------------------------------------------------------- /tools/stfle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/stfle.py -------------------------------------------------------------------------------- /tools/xbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/xbuild -------------------------------------------------------------------------------- /tools/xmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/xmi.py -------------------------------------------------------------------------------- /tools/xtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/xtest -------------------------------------------------------------------------------- /tools/xtoolfun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/xtoolfun -------------------------------------------------------------------------------- /tools/xverify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/tools/xverify -------------------------------------------------------------------------------- /xcard/XCARD.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/XCARD.mac -------------------------------------------------------------------------------- /xcard/XCARDTST.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/XCARDTST.mac -------------------------------------------------------------------------------- /xcard/s390/asmtst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/asmtst -------------------------------------------------------------------------------- /xcard/s390/asmtst-20201121.044808.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/asmtst-20201121.044808.txt -------------------------------------------------------------------------------- /xcard/s390/asmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/asmx -------------------------------------------------------------------------------- /xcard/s390/asmx-20201121.044155.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/asmx-20201121.044155.txt -------------------------------------------------------------------------------- /xcard/s390/card: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/card -------------------------------------------------------------------------------- /xcard/s390/iplc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/iplc -------------------------------------------------------------------------------- /xcard/s390/iplc-20201121.051023.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/iplc-20201121.051023.txt -------------------------------------------------------------------------------- /xcard/s390/iplc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/iplc.conf -------------------------------------------------------------------------------- /xcard/s390/iplc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/iplc.rc -------------------------------------------------------------------------------- /xcard/s390/iplt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/iplt -------------------------------------------------------------------------------- /xcard/s390/iplt-20201121.051703.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/iplt-20201121.051703.txt -------------------------------------------------------------------------------- /xcard/s390/iplt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/iplt.conf -------------------------------------------------------------------------------- /xcard/s390/iplt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/iplt.rc -------------------------------------------------------------------------------- /xcard/s390/ldipl/XCARD.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/ldipl/XCARD.bin -------------------------------------------------------------------------------- /xcard/s390/ldipl/xcard.txt: -------------------------------------------------------------------------------- 1 | XCARD.bin 0x400 2 | -------------------------------------------------------------------------------- /xcard/s390/load.aws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/load.aws -------------------------------------------------------------------------------- /xcard/s390/load.deck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/load.deck -------------------------------------------------------------------------------- /xcard/s390/medx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/medx -------------------------------------------------------------------------------- /xcard/s390/medx-20201121.045218.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/medx-20201121.045218.txt -------------------------------------------------------------------------------- /xcard/s390/tape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/tape -------------------------------------------------------------------------------- /xcard/s390/xcard.deck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/xcard.deck -------------------------------------------------------------------------------- /xcard/s390/xcardtst.deck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/s390/xcardtst.deck -------------------------------------------------------------------------------- /xcard/xcard.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/xcard.asm -------------------------------------------------------------------------------- /xcard/xcardtst.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xcard/xcardtst.asm -------------------------------------------------------------------------------- /xforth/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xforth/LICENSE.txt -------------------------------------------------------------------------------- /xforth/forth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xforth/forth.py -------------------------------------------------------------------------------- /xforth/forth_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xforth/forth_words.py -------------------------------------------------------------------------------- /xforth/msp430.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xforth/msp430.py -------------------------------------------------------------------------------- /xforth/xforth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s390guy/SATK/HEAD/xforth/xforth.py --------------------------------------------------------------------------------