XPLPX (ver 3.4.0) Abandoned Freeware XPLPX is the 32-BIT OPTIMIZING PROTECTED MODE XPL COMPILER. XPLPX compiles programs that run in 32-bit protected mode under DOS or versions of Windows that still run DOS programs. Since it's an optimizing compiler that requires a math coprocessor, floating-point operations are about ten times faster than with 16-bit XPL0. This, along with its built-in hi-res VESA graphics, makes it ideal for writing animated graphic demos and games. It uses the PMODE DOS extender (thanks Tran!). A familiarity with 16-bit XPL0 is assumed. file = CXPL.zip XPLX requires a 386+ PC with math coprocessor and 2 megabytes of RAM. It -REQUIRES- that you use Borland's TASMX 3.1 and TLINK 5.1 (or later). I am including Borland's TURBO ASSEMBLER 5.0 package. Note that the TASM folder contains two ZIP files. The archive WINDOWS.zip are files that need to be installed in the WINDOWS and WINDOWS\SYSTEM directories if you intend to run this program under Windows (NOT recommended). The archive PATCHES.zip contains upgrades, to bring TASM up to version 5.3. file = TASM.zip ========== XPL0 (Ver 3.0) Freeware This is the 16-bit version of XPL. I am including it because it provides an excellent introduction to the 32-bit XPLPX. The program has three compilers: Interpreted, Native, and Optimizing. The optimizing compiler generates code that is about twice as fast and half the size as the non-optimizing native compiler. XPL0 only requires and XT computer with 256k of ram and DOS 3.30. XPL0 -REQUIRES- MASM or TASM. MASM version 5.10 is sufficient and recommended. Source code for the compilers and run-time support routines are included in the archive SOURCE.zip. file = XPL0.zip As an aid, I am including MASM 5.10. Perhaps the greatest (though most overlooked) feature added to version 5.10 was the @@ local label; we no longer had to come up with a unique label for each conditional test. Note that Microsoft's @@ labels are not the same as TASM's. Microsoft included a text editor simply named M, which a few programmers loved, but many never figured it out at all. Version 5.10 also added OS/2 1.x support. file = MASM.zip ========================= What Is XPL? XPL is similar to Pascal and C. Although not mainstream, over the years it has proven to be immensely useful. It has been used to write everything from operating systems for 6502- and 68000-based computers, to commercial programs for 8088-based (PC) computers, to embedded firmware for PIC and other microcontrollers. Since its inception on the 6502, it has been steadily upgraded and spread to other processors such as 8080, 6800, PDP-10, IBM-360, a couple homebrew machines, 65802, 680x0, PIC, Ubicom, and, most notably, the 80x86 family used by IBM-compatible PCs. If you're hooked on C, XPL might not appeal to you. It doesn't have all the features of other languages. Normally this is not a problem, and it makes the language easier to learn. XPL is by no means crippled. It's a block-structured language that supports recursion. It has two data types: integer and double-precision floating point ('reals' - with and without a math coprocessor). Even the small 16-bit version allows both code and data spaces larger than 64K. It provides generalized device I/O for the console, printers, files, and serial ports. It allows unlimited-dimensional arrays and complex data structures using pointers. It allows up to 8 levels of procedure and function nesting (compare this to C which only has 2). It has conditional compile, include files, separately compiled modules, inline assembly code, built-in graphic and transcendental routines, peek, poke, and port I/O. XPL is a significant piece of work that continues to be useful despite massive support behind other languages. If you're new to programming, you may find XPL easier to learn than the myriad of languages called "Basic." If your interest in programming is to make money, you're probably better off with Delphi or Visual C++. However, if you think programming is fun and want a deep understanding of how programs and compilers work, XPL may be for you.