AminetAminet
Search:
84184 packages online
About
Recent
Browse
Search
Upload
Setup
Services

dev/cross/7800basic.lha

Mirror:Random
Showing:ppc-warpupgeneric
No screenshot available
Short:BASIC-like language for Atari 7800 games
Author:Michael Saarna et al., port by uploader
Uploader:polluks+aminet sdf lonestar org (Stefan Haubenthal)
Type:dev/cross
Version:0.19
Requires:png.library
Architecture:ppc-morphos
URL:http://www.randomterrain.com/7800basic.html
Date:2022-05-21
Download:http://aminet.net/dev/cross/7800basic.lha - View contents
Readme:http://aminet.net/dev/cross/7800basic.readme
Downloads:5584

7800basic - a Basic Compiler for the Atari 7800

Legal Stuff
-----------

   7800basic is created by Michael Saarna, copyright 2013-2020.
   7800basic is derived from the batari Basic compiler for the 2600, 
   which was created by Fred Quimby. (aka batari)

   Additional code is courtesy...
      -Bruce Tomlin (sign7800)
      -the zlib/libpng team
      -the dasm team

   See the LICENSE.txt file for details on licensing. 
  
-----------------------------------------------------------------------------

WHAT IT IS?
-----------

7800basic is a BASIC-like language for creating Atari 7800 games.  It is a 
compiled language that runs on a computer, and it creates a binary file that 
can be run with an Atari 7800 emulator, or the binary file may be used to 
make a cartridge that will operate on a real Atari 7800.

If you find any bugs, please report them via github.


GETTING STARTED
---------------
Extract the contents of the zip file to a new directory.  The name of the 
directory doesn't matter. The examples in this guide assume "c:\7800basic"
for Windows, and $HOME/7800basic for Unix.

Windows:
--------
7800basic is distributed as a single zip file. Download the latest zip 
file and unzip to whichever location you desire to use. Make sure your 
unzip utility creates the expected subdirectories (/docs, /includes, ...) 
rather than sticking all of the files into one directory.

To point Windows at the 7800basic directory, you should double-click the 
provided install_win.bat file, and follow the instructions presented.

If install_win.bat reports failure, you should manually set the following
variables to point at your 7800basic directory.

e.g.: set basic7800dir=c:\7800basic
      set PATH=%PATH%;c:\7800basic

This is accomplished differently, depending on your version of Windows. This
info is easily found on the Internet - https://tinyurl.com/yx756dug

Once the above is done, switch to a folder containing a 7800basic source file 
and type:

  7800bas filename

where filename is the name of the BASIC source file you wish to compile. The 
project folder can be any folder you create to store your files.

To test your installation, several sample programs are included in the 
"samples" folder. Switch to this folder and type:

  7800bas simple.bas

If successful, a file called simple.bas.a78 will be generated that you can 
run on an emulator, or add to a flash cart. The sample program is not very 
interesting, but note how simple it was to write. Open sample.bas in a text 
editor and take a look at how it was written.


Getting Started with Linux/OS X/other Unixes
--------------------------------------------
This version of 7800basic comes bundled with 32-bit and 64-bit binaries for
both OS X and Linux.  If you wish to run 7800basic on another Unix, you'll 
need to rebuild the binaries. (refer to the provided COMPILE.txt document)

The rest of this section assumes you understand what directory you saved
the 7800basic archive to, how to extract the archive file, how to open a
Unix shell, and how to use the "cd" command to move into in directories.


7800basic for Unix - the Easy Way
---------------------------------
  1. download and unzip/untar the 7800basic distribution to your home 
     directory, ensuring the directory structure is maintained.  I.e. there 
     should be "includes" and "samples" subdirectories.

  2. open a terminal window, and "cd" to the unzipped 7800basic directory.

  3. run the installer and follow the instructions: ./install_ux.sh

7800basic for Unix - Manual_Installation
----------------------------------------
  1. download and unzip/untar the 7800basic distribution to your home 
     directory, ensuring the directory structure is maintained. I.e. there
     should be "includes" and "samples" subdirectories.

  2. ensure these two environment variables are set...

       export bas7800dir=$HOME/7800basic
       export PATH=$bas7800dir:$PATH

     ...You should substitute the actual location of the unzipped 7800basic 
     distribution on your system in the first line.

  3. compile your basic program using the 7800basic.sh script.

       e.g. 7800basic.sh myprogram.bas

     It should produce a binary named after the basic program, but ending 
     with the file extension ".bin".

     If it doesn't work, ensure you have set the bas7800dir and PATH variables 
     correctly.

How It Works
------------
Not unlike other compilers, 7800 BASIC uses a 4-step compilation process:

1.  Preprocess...
    The preprocessor takes your basic code, and reformats and tokenizes it 
    so the compiler can understand it.  Certain errors can be caught at this 
    stage.

2.  Compile...
    The compiler converts your Basic code into assembly language. It will 
    create a temporary file called 7800.asm.  The basic code is preserved as 
    comments in this file so that those wishing to study assembly language 
    can learn by studying how the Basic code was converted.

3.  Link...
    The linker splits the basic code into sections if needed, then 
    concatenates them, along with the kernel, modules and compilation 
    directives into a composite assembly language file.

[3a. Optimize...]
    An optional stage is a peephole optimizer that looks for redundant and 
    unnecessary code in the composite assembly file.

4.  Assemble...
    The assembler converts assembly language to a binary file that contains 
    machine code that can run in an emulator or on a real Atari 7800.


Contents of dev/cross/7800basic.lha
PERMISSION  UID  GID    PACKED    SIZE  RATIO METHOD CRC     STAMP     NAME
---------- ----------- ------- ------- ------ ---------- ------------ ----------
[generic]                  309     546  56.6% -lh5- c49b Dec 31 07:02 7800basic-0.19/.gitignore
[generic]                  371     797  46.5% -lh5- da78 Dec 31 07:02 7800basic-0.19/7800bas.bat
[generic]                 2594    7115  36.5% -lh5- 7f0d Dec 31 07:02 7800basic-0.19/7800bas.c
[generic]                  804    1950  41.2% -lh5- 94da Dec 31 07:02 7800basic-0.19/7800basic.sh
[generic]                 5378   24560  21.9% -lh5- c996 Dec 31 07:02 7800basic-0.19/7800header.c
[generic]                 1200    3427  35.0% -lh5- 115b Dec 31 07:02 7800basic-0.19/7800makecc2.c
[generic]                 5920   19552  30.3% -lh5- a3a2 Dec 31 07:02 7800basic-0.19/7800sign.c
[generic]                18882   96337  19.6% -lh5- 83d2 Dec 31 07:02 7800basic-0.19/atarivox.h
[generic]                  874    2364  37.0% -lh5- 6a60 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x64/bin/libpng15-config
[generic]                33807  118832  28.4% -lh5- fed7 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x64/include/libpng15/png.h
[generic]                 7030   21488  32.7% -lh5- 81a5 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x64/include/libpng15/pngconf.h
[generic]                 1358    6315  21.5% -lh5- 7668 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x64/include/libpng15/pnglibconf.h
[generic]                 4370   15472  28.2% -lh5- be44 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x64/include/zconf.h
[generic]                26949   87883  30.7% -lh5- b791 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x64/include/zlib.h
[generic]               103193  305464  33.8% -lh5- 5673 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x64/lib/libpng15.a
[generic]                  509     982  51.8% -lh5- 6ba8 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x64/lib/libpng15.la
[generic]                49641  133088  37.3% -lh5- 0414 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x64/lib/libz.a
[generic]                  200     287  69.7% -lh5- bee8 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x64/lib/pkgconfig/libpng15.pc
[generic]                  195     303  64.4% -lh5- befc Dec 31 07:02 7800basic-0.19/contrib/Darwin.x64/lib/pkgconfig/zlib.pc
[generic]                75992  243627  31.2% -lh5- dea8 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x64/share/man/man3/libpng.3
[generic]                  446     762  58.5% -lh5- f1dc Dec 31 07:02 7800basic-0.19/contrib/Darwin.x64/share/man/man3/libpngpf.3
[generic]                 1962    4236  46.3% -lh5- 1f09 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x64/share/man/man3/zlib.3
[generic]                 1128    2409  46.8% -lh5- beb3 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x64/share/man/man5/png.5
[generic]                  875    2364  37.0% -lh5- 3590 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x86/bin/libpng15-config
[generic]                33807  118832  28.4% -lh5- fed7 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x86/include/libpng15/png.h
[generic]                 7030   21488  32.7% -lh5- 81a5 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x86/include/libpng15/pngconf.h
[generic]                 1358    6315  21.5% -lh5- 7668 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x86/include/libpng15/pnglibconf.h
[generic]                 4370   15472  28.2% -lh5- be44 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x86/include/zconf.h
[generic]                26949   87883  30.7% -lh5- b791 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x86/include/zlib.h
[generic]                88864  240424  37.0% -lh5- 455d Dec 31 07:02 7800basic-0.19/contrib/Darwin.x86/lib/libpng15.a
[generic]                  509     982  51.8% -lh5- ac22 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x86/lib/libpng15.la
[generic]                44578  109656  40.7% -lh5- f93d Dec 31 07:02 7800basic-0.19/contrib/Darwin.x86/lib/libz.a
[generic]                  200     287  69.7% -lh5- 68b9 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x86/lib/pkgconfig/libpng15.pc
[generic]                  195     303  64.4% -lh5- 4c57 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x86/lib/pkgconfig/zlib.pc
[generic]                75992  243627  31.2% -lh5- dea8 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x86/share/man/man3/libpng.3
[generic]                  446     762  58.5% -lh5- f1dc Dec 31 07:02 7800basic-0.19/contrib/Darwin.x86/share/man/man3/libpngpf.3
[generic]                 1962    4236  46.3% -lh5- 1f09 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x86/share/man/man3/zlib.3
[generic]                 1128    2409  46.8% -lh5- beb3 Dec 31 07:02 7800basic-0.19/contrib/Darwin.x86/share/man/man5/png.5
[generic]                  586    1224  47.9% -lh5- 45d9 Dec 31 07:02 7800basic-0.19/contrib/fetch_dasm.sh
[generic]                  877    2371  37.0% -lh5- 29b2 Dec 31 07:02 7800basic-0.19/contrib/Linux.x64/bin/libpng15-config
[generic]                33807  118832  28.4% -lh5- fed7 Dec 31 07:02 7800basic-0.19/contrib/Linux.x64/include/libpng15/png.h
[generic]                 7030   21488  32.7% -lh5- 81a5 Dec 31 07:02 7800basic-0.19/contrib/Linux.x64/include/libpng15/pngconf.h
[generic]                 1358    6315  21.5% -lh5- 7668 Dec 31 07:02 7800basic-0.19/contrib/Linux.x64/include/libpng15/pnglibconf.h
[generic]                 4370   15472  28.2% -lh5- be44 Dec 31 07:02 7800basic-0.19/contrib/Linux.x64/include/zconf.h
[generic]                26949   87883  30.7% -lh5- b791 Dec 31 07:02 7800basic-0.19/contrib/Linux.x64/include/zlib.h
[generic]                98507  337802  29.2% -lh5- eff9 Dec 31 07:02 7800basic-0.19/contrib/Linux.x64/lib/libpng15.a
[generic]                  510     983  51.9% -lh5- e593 Dec 31 07:02 7800basic-0.19/contrib/Linux.x64/lib/libpng15.la
[generic]                49836  149126  33.4% -lh5- 0336 Dec 31 07:02 7800basic-0.19/contrib/Linux.x64/lib/libz.a
[generic]                  202     294  68.7% -lh5- 1b6d Dec 31 07:02 7800basic-0.19/contrib/Linux.x64/lib/pkgconfig/libpng15.pc
[generic]                  194     302  64.2% -lh5- d749 Dec 31 07:02 7800basic-0.19/contrib/Linux.x64/lib/pkgconfig/zlib.pc
[generic]                75992  243627  31.2% -lh5- dea8 Dec 31 07:02 7800basic-0.19/contrib/Linux.x64/share/man/man3/libpng.3
[generic]                  446     762  58.5% -lh5- f1dc Dec 31 07:02 7800basic-0.19/contrib/Linux.x64/share/man/man3/libpngpf.3
[generic]                 1962    4236  46.3% -lh5- 1f09 Dec 31 07:02 7800basic-0.19/contrib/Linux.x64/share/man/man3/zlib.3
[generic]                 1128    2409  46.8% -lh5- beb3 Dec 31 07:02 7800basic-0.19/contrib/Linux.x64/share/man/man5/png.5
[generic]                  877    2371  37.0% -lh5- 6812 Dec 31 07:02 7800basic-0.19/contrib/Linux.x86/bin/libpng15-config
[generic]                33807  118832  28.4% -lh5- fed7 Dec 31 07:02 7800basic-0.19/contrib/Linux.x86/include/libpng15/png.h
[generic]                 7030   21488  32.7% -lh5- 81a5 Dec 31 07:02 7800basic-0.19/contrib/Linux.x86/include/libpng15/pngconf.h
[generic]                 1358    6315  21.5% -lh5- 7668 Dec 31 07:02 7800basic-0.19/contrib/Linux.x86/include/libpng15/pnglibconf.h
[generic]                 4370   15472  28.2% -lh5- be44 Dec 31 07:02 7800basic-0.19/contrib/Linux.x86/include/zconf.h
[generic]                26949   87883  30.7% -lh5- b791 Dec 31 07:02 7800basic-0.19/contrib/Linux.x86/include/zlib.h
[generic]                98064  277454  35.3% -lh5- e906 Dec 31 07:02 7800basic-0.19/contrib/Linux.x86/lib/libpng15.a
[generic]                  510     983  51.9% -lh5- 51d7 Dec 31 07:02 7800basic-0.19/contrib/Linux.x86/lib/libpng15.la
[generic]                50562  130040  38.9% -lh5- b451 Dec 31 07:02 7800basic-0.19/contrib/Linux.x86/lib/libz.a
[generic]                  202     294  68.7% -lh5- 261e Dec 31 07:02 7800basic-0.19/contrib/Linux.x86/lib/pkgconfig/libpng15.pc
[generic]                  194     302  64.2% -lh5- 25e2 Dec 31 07:02 7800basic-0.19/contrib/Linux.x86/lib/pkgconfig/zlib.pc
[generic]                75992  243627  31.2% -lh5- dea8 Dec 31 07:02 7800basic-0.19/contrib/Linux.x86/share/man/man3/libpng.3
[generic]                  446     762  58.5% -lh5- f1dc Dec 31 07:02 7800basic-0.19/contrib/Linux.x86/share/man/man3/libpngpf.3
[generic]                 1962    4236  46.3% -lh5- 1f09 Dec 31 07:02 7800basic-0.19/contrib/Linux.x86/share/man/man3/zlib.3
[generic]                 1128    2409  46.8% -lh5- beb3 Dec 31 07:02 7800basic-0.19/contrib/Linux.x86/share/man/man5/png.5
[generic]                   53      58  91.4% -lh5- 0c00 Dec 31 07:02 7800basic-0.19/contrib/README.txt
[generic]              1092020 1092020 100.0% -lh0- 7faf Dec 31 07:02 7800basic-0.19/contrib/src/libpng-1.5.17.tar.gz
[generic]                   84     222  37.8% -lh5- 4873 Dec 31 07:02 7800basic-0.19/contrib/src/make_all_contrib.sh
[generic]                  284     548  51.8% -lh5- 3b6e Dec 31 07:02 7800basic-0.19/contrib/src/make_dasm_all.sh
[generic]                  226     343  65.9% -lh5- 9c28 Dec 31 07:02 7800basic-0.19/contrib/src/make_dasm_Linux_x64.sh
[generic]                  264     405  65.2% -lh5- 7541 Dec 31 07:02 7800basic-0.19/contrib/src/make_dasm_Linux_x86.sh
[generic]                  325     539  60.3% -lh5- 7efd Dec 31 07:02 7800basic-0.19/contrib/src/make_dasm_OSX_x64.sh
[generic]                  322     539  59.7% -lh5- 644e Dec 31 07:02 7800basic-0.19/contrib/src/make_dasm_OSX_x86.sh
[generic]                  275     406  67.7% -lh5- 3b01 Dec 31 07:02 7800basic-0.19/contrib/src/make_dasm_Windows_x64.sh
[generic]                  311     489  63.6% -lh5- 41e9 Dec 31 07:02 7800basic-0.19/contrib/src/make_dasm_Windows_x86.sh
[generic]                  312     677  46.1% -lh5- 3599 Dec 31 07:02 7800basic-0.19/contrib/src/make_libaries_Linux_x64_static.sh
[generic]                  310     677  45.8% -lh5- bc3b Dec 31 07:02 7800basic-0.19/contrib/src/make_libaries_Linux_x86_static.sh
[generic]                  341     755  45.2% -lh5- 87f0 Dec 31 07:02 7800basic-0.19/contrib/src/make_libraries_OSX_x64_static.sh
[generic]                  340     755  45.0% -lh5- ced6 Dec 31 07:02 7800basic-0.19/contrib/src/make_libraries_OSX_x86_static.sh
[generic]                  334     732  45.6% -lh5- 83b4 Dec 31 07:02 7800basic-0.19/contrib/src/make_libraries_Win_x64_static.sh
[generic]                  334     724  46.1% -lh5- 70a2 Dec 31 07:02 7800basic-0.19/contrib/src/make_libraries_Win_x86_static.sh
[generic]                  366     698  52.4% -lh5- 1890 Dec 31 07:02 7800basic-0.19/contrib/src/version_dasm.sh
[generic]               571091  571091 100.0% -lh0- 85c9 Dec 31 07:02 7800basic-0.19/contrib/src/zlib-1.2.8.tar.gz
[generic]                  876    2363  37.1% -lh5- 139f Dec 31 07:02 7800basic-0.19/contrib/Win32.x64/bin/libpng15-config
[generic]                33807  118832  28.4% -lh5- fed7 Dec 31 07:02 7800basic-0.19/contrib/Win32.x64/include/libpng15/png.h
[generic]                 7030   21488  32.7% -lh5- 81a5 Dec 31 07:02 7800basic-0.19/contrib/Win32.x64/include/libpng15/pngconf.h
[generic]                 1358    6315  21.5% -lh5- 7668 Dec 31 07:02 7800basic-0.19/contrib/Win32.x64/include/libpng15/pnglibconf.h
[generic]                 4370   15472  28.2% -lh5- be44 Dec 31 07:02 7800basic-0.19/contrib/Win32.x64/include/zconf.h
[generic]                26949   87883  30.7% -lh5- b791 Dec 31 07:02 7800basic-0.19/contrib/Win32.x64/include/zlib.h
[generic]                92145  275148  33.5% -lh5- 08ef Dec 31 07:02 7800basic-0.19/contrib/Win32.x64/lib/libpng15.a
[generic]                  509     979  52.0% -lh5- 50fb Dec 31 07:02 7800basic-0.19/contrib/Win32.x64/lib/libpng15.la
[generic]                49454   95710  51.7% -lh5- db1d Dec 31 07:02 7800basic-0.19/contrib/Win32.x64/lib/libz.a
[generic]                  200     286  69.9% -lh5- 83a6 Dec 31 07:02 7800basic-0.19/contrib/Win32.x64/lib/pkgconfig/libpng15.pc
[generic]                  196     302  64.9% -lh5- 3bb4 Dec 31 07:02 7800basic-0.19/contrib/Win32.x64/lib/pkgconfig/zlib.pc
[generic]                75992  243627  31.2% -lh5- dea8 Dec 31 07:02 7800basic-0.19/contrib/Win32.x64/share/man/man3/libpng.3
[generic]                  446     762  58.5% -lh5- f1dc Dec 31 07:02 7800basic-0.19/contrib/Win32.x64/share/man/man3/libpngpf.3
[generic]                 1962    4236  46.3% -lh5- 1f09 Dec 31 07:02 7800basic-0.19/contrib/Win32.x64/share/man/man3/zlib.3
[generic]                 1128    2409  46.8% -lh5- beb3 Dec 31 07:02 7800basic-0.19/contrib/Win32.x64/share/man/man5/png.5
[generic]                  876    2363  37.1% -lh5- 4c6f Dec 31 07:02 7800basic-0.19/contrib/Win32.x86/bin/libpng15-config
[generic]                33807  118832  28.4% -lh5- fed7 Dec 31 07:02 7800basic-0.19/contrib/Win32.x86/include/libpng15/png.h
[generic]                 7030   21488  32.7% -lh5- 81a5 Dec 31 07:02 7800basic-0.19/contrib/Win32.x86/include/libpng15/pngconf.h
[generic]                 1358    6315  21.5% -lh5- 7668 Dec 31 07:02 7800basic-0.19/contrib/Win32.x86/include/libpng15/pnglibconf.h
[generic]                 4370   15472  28.2% -lh5- be44 Dec 31 07:02 7800basic-0.19/contrib/Win32.x86/include/zconf.h
[generic]                26949   87883  30.7% -lh5- b791 Dec 31 07:02 7800basic-0.19/contrib/Win32.x86/include/zlib.h
[generic]                78444  227980  34.4% -lh5- 7c31 Dec 31 07:02 7800basic-0.19/contrib/Win32.x86/lib/libpng15.a
[generic]                  509     979  52.0% -lh5- f5bc Dec 31 07:02 7800basic-0.19/contrib/Win32.x86/lib/libpng15.la
[generic]                46315   87416  53.0% -lh5- 5879 Dec 31 07:02 7800basic-0.19/contrib/Win32.x86/lib/libz.a
[generic]                  200     286  69.9% -lh5- 55f7 Dec 31 07:02 7800basic-0.19/contrib/Win32.x86/lib/pkgconfig/libpng15.pc
[generic]                  195     302  64.6% -lh5- c91f Dec 31 07:02 7800basic-0.19/contrib/Win32.x86/lib/pkgconfig/zlib.pc
[generic]                75992  243627  31.2% -lh5- dea8 Dec 31 07:02 7800basic-0.19/contrib/Win32.x86/share/man/man3/libpng.3
[generic]                  446     762  58.5% -lh5- f1dc Dec 31 07:02 7800basic-0.19/contrib/Win32.x86/share/man/man3/libpngpf.3
[generic]                 1962    4236  46.3% -lh5- 1f09 Dec 31 07:02 7800basic-0.19/contrib/Win32.x86/share/man/man3/zlib.3
[generic]                 1128    2409  46.8% -lh5- beb3 Dec 31 07:02 7800basic-0.19/contrib/Win32.x86/share/man/man5/png.5
[generic]                  186     279  66.7% -lh5- 3916 Dec 31 07:02 7800basic-0.19/dasm.LICENSE.txt
[generic]                 1433    3717  38.6% -lh5- 13d9 Dec 31 07:02 7800basic-0.19/filter.c
[generic]                  624    1289  48.4% -lh5- 2449 Dec 31 07:02 7800basic-0.19/fixcase.sh
[generic]                 2091    7586  27.6% -lh5- f279 Dec 31 07:02 7800basic-0.19/includes/7800.h
[generic]                 3698   11721  31.6% -lh5- 1106 Dec 31 07:02 7800basic-0.19/includes/7800basic.h
[generic]                  477    1232  38.7% -lh5- 61db Dec 31 07:02 7800basic-0.19/includes/7800basicfooter.asm
[generic]                  694    2209  31.4% -lh5- 5369 Dec 31 07:02 7800basic-0.19/includes/7800basicheader.asm
[generic]                 2213    7847  28.2% -lh5- 3595 Dec 31 07:02 7800basic-0.19/includes/7800macro.h
[generic]                  392    1391  28.2% -lh5- 1d17 Dec 31 07:02 7800basic-0.19/includes/7800vox.asm
[generic]                  481    1520  31.6% -lh5- 4ef6 Dec 31 07:02 7800basic-0.19/includes/crccartcheck.asm
[generic]                  407     820  49.6% -lh5- 003f Dec 31 07:02 7800basic-0.19/includes/default.inc
[generic]                  209     291  71.8% -lh5- 6066 Dec 31 07:02 7800basic-0.19/includes/encryptionguard.asm
[generic]                  482    1992  24.2% -lh5- 486c Dec 31 07:02 7800basic-0.19/includes/fixed_point_math.asm
[generic]                 6911   34110  20.3% -lh5- 1a35 Dec 31 07:02 7800basic-0.19/includes/hiscore.asm
[generic]                  953    3610  26.4% -lh5- b62f Dec 31 07:02 7800basic-0.19/includes/i2c7800.inc
[generic]                  596    1296  46.0% -lh5- 29a9 Dec 31 07:02 7800basic-0.19/includes/indent.sh
[generic]                  383    1264  30.3% -lh5- 2a53 Dec 31 07:02 7800basic-0.19/includes/last4k.asm
[generic]                 1023    3339  30.6% -lh5- 8b42 Dec 31 07:02 7800basic-0.19/includes/macro.h
[generic]                 1698    6052  28.1% -lh5- 706c Dec 31 07:02 7800basic-0.19/includes/pokeysound.asm
[generic]                  741    1788  41.4% -lh5- 7506 Dec 31 07:02 7800basic-0.19/includes/speakjet.inc
[generic]                 1841    5158  35.7% -lh5- 9c12 Dec 31 07:02 7800basic-0.19/includes/startup.asm
[generic]                15469   67479  22.9% -lh5- 4ad2 Dec 31 07:02 7800basic-0.19/includes/std_routines.asm
[generic]                  601    2949  20.4% -lh5- 4c42 Dec 31 07:02 7800basic-0.19/includes/tiadrumkit.asm
[generic]                 3024   10385  29.1% -lh5- 3b3c Dec 31 07:02 7800basic-0.19/includes/tracker.asm
[generic]                 1003    3569  28.1% -lh5- 9884 Dec 31 07:02 7800basic-0.19/includes/zonememory.asm
[generic]                 1187    2645  44.9% -lh5- 50a8 Dec 31 07:02 7800basic-0.19/install_ux.sh
[generic]                  670    1676  40.0% -lh5- 612b Dec 31 07:02 7800basic-0.19/install_win.bat
[generic]                 3448   18419  18.7% -lh5- 210f Dec 31 07:02 7800basic-0.19/keywords.c
[generic]                  709    1816  39.0% -lh5- 28ea Dec 31 07:02 7800basic-0.19/keywords.h
[generic]                17123   48596  35.2% -lh5- a171 Dec 31 07:02 7800basic-0.19/LICENSE.txt
[generic]                  583    1802  32.4% -lh5- 603f Dec 31 07:02 7800basic-0.19/makefile
[generic]                  496    1571  31.6% -lh5- 70c9 Dec 31 07:02 7800basic-0.19/makefile.linux-x64
[generic]                  497    1571  31.6% -lh5- 5881 Dec 31 07:02 7800basic-0.19/makefile.linux-x86
[generic]                  555    1638  33.9% -lh5- 8346 Dec 31 07:02 7800basic-0.19/makefile.xcmp.osx-x64
[generic]                  556    1638  33.9% -lh5- e57c Dec 31 07:02 7800basic-0.19/makefile.xcmp.osx-x86
[generic]                  504    1793  28.1% -lh5- 5992 Dec 31 07:02 7800basic-0.19/makefile.xcmp.win-x64
[generic]                  505    1810  27.9% -lh5- d0b7 Dec 31 07:02 7800basic-0.19/makefile.xcmp.win-x86
[generic]                 1060    3658  29.0% -lh5- b5d0 Dec 31 07:02 7800basic-0.19/makepackages.sh
[generic]                  493    1609  30.6% -lh5- 3954 Dec 31 07:02 7800basic-0.19/optimize.lex
[generic]                 1102    2852  38.6% -lh5- cb9a Dec 31 07:02 7800basic-0.19/postprocess.c
[generic]                 1109    5969  18.6% -lh5- e9ee Dec 31 07:02 7800basic-0.19/preprocess.lex
[generic]                 2352    5639  41.7% -lh5- 74cf Dec 31 07:02 7800basic-0.19/README.txt
[generic]                    5       5 100.0% -lh0- b48a Dec 31 07:02 7800basic-0.19/release.dat
[generic]               242169  242169 100.0% -lh0- abcf Dec 31 07:02 7800basic-0.19/samples/7800basic logo.png
[generic]                  901    2573  35.0% -lh5- 06b6 Dec 31 07:02 7800basic-0.19/samples/adventurer/adventurer.bas
[generic]                  349     349 100.0% -lh0- 8c64 Dec 31 07:02 7800basic-0.19/samples/adventurer/gfx/alphabet_8_wide.png
[generic]                  215     215 100.0% -lh0- acb9 Dec 31 07:02 7800basic-0.19/samples/adventurer/gfx/herodown1.png
[generic]                  213     213 100.0% -lh0- 8d44 Dec 31 07:02 7800basic-0.19/samples/adventurer/gfx/herodown2.png
[generic]                  231     231 100.0% -lh0- 334b Dec 31 07:02 7800basic-0.19/samples/adventurer/gfx/heroleft1.png
[generic]                  227     227 100.0% -lh0- cb4f Dec 31 07:02 7800basic-0.19/samples/adventurer/gfx/heroleft2.png
[generic]                  232     232 100.0% -lh0- a80b Dec 31 07:02 7800basic-0.19/samples/adventurer/gfx/heroright1.png
[generic]                  225     225 100.0% -lh0- cadd Dec 31 07:02 7800basic-0.19/samples/adventurer/gfx/heroright2.png
[generic]                  219     219 100.0% -lh0- 2e24 Dec 31 07:02 7800basic-0.19/samples/adventurer/gfx/heroup1.png
[generic]                  218     218 100.0% -lh0- a338 Dec 31 07:02 7800basic-0.19/samples/adventurer/gfx/heroup2.png
[generic]                  271     271 100.0% -lh0- 6410 Dec 31 07:02 7800basic-0.19/samples/adventurer/gfx/scoredigits_8_wide.png
[generic]                  192     192 100.0% -lh0- dc5f Dec 31 07:02 7800basic-0.19/samples/adventurer/gfx/tileset_blanks.png
[generic]                  372     372 100.0% -lh0- d731 Dec 31 07:02 7800basic-0.19/samples/adventurer/gfx/tileset_rocks.png
[generic]                  210     419  50.1% -lh5- 5209 Dec 31 07:02 7800basic-0.19/samples/adventurer/Makefile
[generic]                  480    1121  42.8% -lh5- 8a88 Dec 31 07:02 7800basic-0.19/samples/atarivoxspeech/atarivoxspeech.bas
[generic]                  494     494 100.0% -lh0- 42c2 Dec 31 07:02 7800basic-0.19/samples/atarivoxspeech/atascii.png
[generic]                  217     436  49.8% -lh5- 25c6 Dec 31 07:02 7800basic-0.19/samples/atarivoxspeech/Makefile
[generic]                  904    2549  35.5% -lh5- f38e Dec 31 07:02 7800basic-0.19/samples/banner/banner.bas
[generic]                  349     349 100.0% -lh0- 8c64 Dec 31 07:02 7800basic-0.19/samples/banner/gfx/alphabet_8_wide.png
[generic]                  215     215 100.0% -lh0- acb9 Dec 31 07:02 7800basic-0.19/samples/banner/gfx/herodown1.png
[generic]                  233     233 100.0% -lh0- 0998 Dec 31 07:02 7800basic-0.19/samples/banner/gfx/herodown1test.png
[generic]                  213     213 100.0% -lh0- 8d44 Dec 31 07:02 7800basic-0.19/samples/banner/gfx/herodown2.png
[generic]                  234     234 100.0% -lh0- 0a8d Dec 31 07:02 7800basic-0.19/samples/banner/gfx/herodown2test.png
[generic]                  231     231 100.0% -lh0- 334b Dec 31 07:02 7800basic-0.19/samples/banner/gfx/heroleft1.png
[generic]                  232     232 100.0% -lh0- eb54 Dec 31 07:02 7800basic-0.19/samples/banner/gfx/heroleft1test.png
[generic]                  227     227 100.0% -lh0- cb4f Dec 31 07:02 7800basic-0.19/samples/banner/gfx/heroleft2.png
[generic]                  229     229 100.0% -lh0- e569 Dec 31 07:02 7800basic-0.19/samples/banner/gfx/heroleft2test.png
[generic]                  232     232 100.0% -lh0- a80b Dec 31 07:02 7800basic-0.19/samples/banner/gfx/heroright1.png
[generic]                  235     235 100.0% -lh0- 5bd6 Dec 31 07:02 7800basic-0.19/samples/banner/gfx/heroright1test.png
[generic]                  225     225 100.0% -lh0- cadd Dec 31 07:02 7800basic-0.19/samples/banner/gfx/heroright2.png
[generic]                  231     231 100.0% -lh0- b10f Dec 31 07:02 7800basic-0.19/samples/banner/gfx/heroright2test.png
[generic]                  219     219 100.0% -lh0- 2e24 Dec 31 07:02 7800basic-0.19/samples/banner/gfx/heroup1.png
[generic]                  233     233 100.0% -lh0- 8ce2 Dec 31 07:02 7800basic-0.19/samples/banner/gfx/heroup1test.png
[generic]                  218     218 100.0% -lh0- a338 Dec 31 07:02 7800basic-0.19/samples/banner/gfx/heroup2.png
[generic]                  229     229 100.0% -lh0- 3b98 Dec 31 07:02 7800basic-0.19/samples/banner/gfx/heroup2test.png
[generic]                  327     327 100.0% -lh0- 7e30 Dec 31 07:02 7800basic-0.19/samples/banner/gfx/logobanner.png
[generic]                  271     271 100.0% -lh0- 6410 Dec 31 07:02 7800basic-0.19/samples/banner/gfx/scoredigits_8_wide.png
[generic]                  192     192 100.0% -lh0- dc5f Dec 31 07:02 7800basic-0.19/samples/banner/gfx/tileset_blanks.png
[generic]                  372     372 100.0% -lh0- d731 Dec 31 07:02 7800basic-0.19/samples/banner/gfx/tileset_rocks.png
[generic]                  354     689  51.4% -lh5- 8b9e Dec 31 07:02 7800basic-0.19/samples/boxcollision/boxcollision.bas
[generic]                  172     172 100.0% -lh0- 3d8a Dec 31 07:02 7800basic-0.19/samples/boxcollision/gfx/box1.png
[generic]                  184     184 100.0% -lh0- 2b18 Dec 31 07:02 7800basic-0.19/samples/boxcollision/gfx/box2.png
[generic]                  211     421  50.1% -lh5- c82d Dec 31 07:02 7800basic-0.19/samples/boxcollision/Makefile
[generic]                 1183    2942  40.2% -lh5- 2dd6 Dec 31 07:02 7800basic-0.19/samples/doublebuffer/doublebuffer.bas
[generic]                  215     215 100.0% -lh0- acb9 Dec 31 07:02 7800basic-0.19/samples/doublebuffer/gfx/herodown1.png
[generic]                  192     192 100.0% -lh0- dc5f Dec 31 07:02 7800basic-0.19/samples/doublebuffer/gfx/tileset_blanks.png
[generic]                  372     372 100.0% -lh0- d731 Dec 31 07:02 7800basic-0.19/samples/doublebuffer/gfx/tileset_rocks.png
[generic]                  215     433  49.7% -lh5- bd07 Dec 31 07:02 7800basic-0.19/samples/doublebuffer/Makefile
[generic]                  175     175 100.0% -lh0- 2954 Dec 31 07:02 7800basic-0.19/samples/drivingcontrol/arrow.png
[generic]                  364     717  50.8% -lh5- 1841 Dec 31 07:02 7800basic-0.19/samples/drivingcontrol/drivingcontrol.bas
[generic]                  206     411  50.1% -lh5- b3ba Dec 31 07:02 7800basic-0.19/samples/drivingcontrol/Makefile
[generic]                 1248    1248 100.0% -lh0- b4c5 Dec 31 07:02 7800basic-0.19/samples/fontcheck/atascii.png
[generic]                 1097    2483  44.2% -lh5- d99f Dec 31 07:02 7800basic-0.19/samples/fontcheck/fontcheck.bas
[generic]                  206     412  50.0% -lh5- 5eb2 Dec 31 07:02 7800basic-0.19/samples/fontcheck/Makefile
[generic]                  507     507 100.0% -lh0- 54a9 Dec 31 07:02 7800basic-0.19/samples/helloworld/atascii.png
[generic]                  298     568  52.5% -lh5- db22 Dec 31 07:02 7800basic-0.19/samples/helloworld/helloworld.bas
[generic]                  217     437  49.7% -lh5- cfdf Dec 31 07:02 7800basic-0.19/samples/helloworld/Makefile
[generic]                   51      74  68.9% -lh5- 88a9 Dec 31 07:02 7800basic-0.19/samples/hiscoretable/7800hsgamename.asm
[generic]                  345     345 100.0% -lh0- 1448 Dec 31 07:02 7800basic-0.19/samples/hiscoretable/hiscorefont.png
[generic]                  430     812  53.0% -lh5- bf2e Dec 31 07:02 7800basic-0.19/samples/hiscoretable/hiscoretable.bas
[generic]                  226     457  49.5% -lh5- e118 Dec 31 07:02 7800basic-0.19/samples/hiscoretable/Makefile
[generic]                 1206    1206 100.0% -lh0- 7cbb Dec 31 07:02 7800basic-0.19/samples/keypadcontrol/atascii_full.png
[generic]                  193     193 100.0% -lh0- 0507 Dec 31 07:02 7800basic-0.19/samples/keypadcontrol/cursor.png
[generic]                  944    3265  28.9% -lh5- e40c Dec 31 07:02 7800basic-0.19/samples/keypadcontrol/keypadcontrol.bas
[generic]                  209     416  50.2% -lh5- 6437 Dec 31 07:02 7800basic-0.19/samples/keypadcontrol/Makefile
[generic]                  338     973  34.7% -lh5- 3e0a Dec 31 07:02 7800basic-0.19/samples/makefile
[generic]                  244     451  54.1% -lh5- 8071 Dec 31 07:02 7800basic-0.19/samples/make_test.sh
[generic]                  178     178 100.0% -lh0- 1085 Dec 31 07:02 7800basic-0.19/samples/mousedemo/arrow.png
[generic]                 1206    1206 100.0% -lh0- 7cbb Dec 31 07:02 7800basic-0.19/samples/mousedemo/atascii_full.png
[generic]                  216     436  49.5% -lh5- dbfc Dec 31 07:02 7800basic-0.19/samples/mousedemo/Makefile
[generic]                  735    1726  42.6% -lh5- adb1 Dec 31 07:02 7800basic-0.19/samples/mousedemo/mousedemo.bas
[generic]                  215     215 100.0% -lh0- acb9 Dec 31 07:02 7800basic-0.19/samples/multisprite/gfx/herodown1.png
[generic]                  192     192 100.0% -lh0- dc5f Dec 31 07:02 7800basic-0.19/samples/multisprite/gfx/tileset_blanks.png
[generic]                  372     372 100.0% -lh0- d731 Dec 31 07:02 7800basic-0.19/samples/multisprite/gfx/tileset_rocks.png
[generic]                  213     432  49.3% -lh5- 442e Dec 31 07:02 7800basic-0.19/samples/multisprite/Makefile
[generic]                  810    2167  37.4% -lh5- d015 Dec 31 07:02 7800basic-0.19/samples/multisprite/multisprite.bas
[generic]                  512     512 100.0% -lh0- 23af Dec 31 07:02 7800basic-0.19/samples/onehundredandone/gfx/atascii.png
[generic]                  173     173 100.0% -lh0- d1ed Dec 31 07:02 7800basic-0.19/samples/onehundredandone/gfx/ball.png
[generic]                  220     443  49.7% -lh5- 3fcd Dec 31 07:02 7800basic-0.19/samples/onehundredandone/Makefile
[generic]                 1190    2776  42.9% -lh5- 1df6 Dec 31 07:02 7800basic-0.19/samples/onehundredandone/onehundredandone.bas
[generic]                36189   36189 100.0% -lh0- 2879 Dec 31 07:02 7800basic-0.19/samples/PALETTESx6.zip
[generic]                  349     349 100.0% -lh0- 8c64 Dec 31 07:02 7800basic-0.19/samples/plotmapfile/gfx/alphabet_8_wide.png
[generic]                  215     215 100.0% -lh0- acb9 Dec 31 07:02 7800basic-0.19/samples/plotmapfile/gfx/herodown1.png
[generic]                  213     213 100.0% -lh0- 8d44 Dec 31 07:02 7800basic-0.19/samples/plotmapfile/gfx/herodown2.png
[generic]                  231     231 100.0% -lh0- 334b Dec 31 07:02 7800basic-0.19/samples/plotmapfile/gfx/heroleft1.png
[generic]                  227     227 100.0% -lh0- cb4f Dec 31 07:02 7800basic-0.19/samples/plotmapfile/gfx/heroleft2.png
[generic]                  232     232 100.0% -lh0- a80b Dec 31 07:02 7800basic-0.19/samples/plotmapfile/gfx/heroright1.png
[generic]                  225     225 100.0% -lh0- cadd Dec 31 07:02 7800basic-0.19/samples/plotmapfile/gfx/heroright2.png
[generic]                  219     219 100.0% -lh0- 2e24 Dec 31 07:02 7800basic-0.19/samples/plotmapfile/gfx/heroup1.png
[generic]                  218     218 100.0% -lh0- a338 Dec 31 07:02 7800basic-0.19/samples/plotmapfile/gfx/heroup2.png
[generic]                  356    5448   6.5% -lh5- a9a1 Dec 31 07:02 7800basic-0.19/samples/plotmapfile/gfx/myplotmapfile.tmx
[generic]                  356    5448   6.5% -lh5- a9a1 Dec 31 07:02 7800basic-0.19/samples/plotmapfile/gfx/plotmapfile.tmx
[generic]                  271     271 100.0% -lh0- 6410 Dec 31 07:02 7800basic-0.19/samples/plotmapfile/gfx/scoredigits_8_wide.png
[generic]                  192     192 100.0% -lh0- dc5f Dec 31 07:02 7800basic-0.19/samples/plotmapfile/gfx/tileset_blanks.png
[generic]                  359     359 100.0% -lh0- f29c Dec 31 07:02 7800basic-0.19/samples/plotmapfile/gfx/tileset_rocks.png
[generic]                  424     424 100.0% -lh0- 46db Dec 31 07:02 7800basic-0.19/samples/plotmapfile/gfx/tileset_water.png
[generic]                  203     408  49.8% -lh5- 3837 Dec 31 07:02 7800basic-0.19/samples/plotmapfile/Makefile
[generic]                  804    2214  36.3% -lh5- d407 Dec 31 07:02 7800basic-0.19/samples/plotmapfile/plotmapfile.bas
[generic]                  295     295 100.0% -lh0- 9f2c Dec 31 07:02 7800basic-0.19/samples/pokey/gfx/alphabet_8_wide.png
[generic]                  238     238 100.0% -lh0- e2e1 Dec 31 07:02 7800basic-0.19/samples/pokey/gfx/scoredigits_8_wide.png
[generic]                  211     427  49.4% -lh5- d668 Dec 31 07:02 7800basic-0.19/samples/pokey/Makefile
[generic]                 1085    3982  27.2% -lh5- 6c0f Dec 31 07:02 7800basic-0.19/samples/pokey/pokey.bas
[generic]                  217     217 100.0% -lh0- 05b7 Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/tileset_ramchars.png
[generic]                  176     176 100.0% -lh0- 993c Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_left_bottom_1.png
[generic]                  184     184 100.0% -lh0- 536b Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_left_bottom_2.png
[generic]                  183     183 100.0% -lh0- 706d Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_left_bottom_3.png
[generic]                  186     186 100.0% -lh0- cf7d Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_left_bottom_4.png
[generic]                  174     174 100.0% -lh0- d3f1 Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_left_top_1.png
[generic]                  177     177 100.0% -lh0- a988 Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_left_top_2.png
[generic]                  181     181 100.0% -lh0- 6ef3 Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_left_top_3.png
[generic]                  182     182 100.0% -lh0- 7a30 Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_left_top_4.png
[generic]                  177     177 100.0% -lh0- d4fe Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_right_bottom_1.png
[generic]                  186     186 100.0% -lh0- aa7c Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_right_bottom_2.png
[generic]                  178     178 100.0% -lh0- 6b0d Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_right_bottom_3.png
[generic]                  184     184 100.0% -lh0- 1fbb Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_right_bottom_4.png
[generic]                  172     172 100.0% -lh0- 87d4 Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_right_top_1.png
[generic]                  177     177 100.0% -lh0- 3839 Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_right_top_2.png
[generic]                  178     178 100.0% -lh0- 0989 Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_right_top_3.png
[generic]                  182     182 100.0% -lh0- 75a0 Dec 31 07:02 7800basic-0.19/samples/ramcharmap/gfx/walk_right_top_4.png
[generic]                  214     432  49.5% -lh5- 45ab Dec 31 07:02 7800basic-0.19/samples/ramcharmap/Makefile
[generic]                 1722    5962  28.9% -lh5- 5870 Dec 31 07:02 7800basic-0.19/samples/ramcharmap/ramcharmap.bas
[generic]                  178     178 100.0% -lh0- 1085 Dec 31 07:02 7800basic-0.19/samples/rotationalcontrols/arrow.png
[generic]                 1206    1206 100.0% -lh0- 7cbb Dec 31 07:02 7800basic-0.19/samples/rotationalcontrols/atascii_full.png
[generic]                  212     421  50.4% -lh5- 7c65 Dec 31 07:02 7800basic-0.19/samples/rotationalcontrols/Makefile
[generic]                 1147    3116  36.8% -lh5- f612 Dec 31 07:02 7800basic-0.19/samples/rotationalcontrols/rotationalcontrols.bas
[generic]                  292     292 100.0% -lh0- df80 Dec 31 07:02 7800basic-0.19/samples/samplegfx/alphabet_4_wide.png
[generic]                  372     372 100.0% -lh0- 7ee2 Dec 31 07:02 7800basic-0.19/samples/samplegfx/alphabet_8_wide.png
[generic]                  410     410 100.0% -lh0- 24c6 Dec 31 07:02 7800basic-0.19/samples/samplegfx/alphabet_8_wide_02.png
[generic]                  367     367 100.0% -lh0- 9ad9 Dec 31 07:02 7800basic-0.19/samples/samplegfx/alphabet_8_wide_03.png
[generic]                 1252    1252 100.0% -lh0- fb01 Dec 31 07:02 7800basic-0.19/samples/samplegfx/ascii-alt01.png
[generic]                  608     608 100.0% -lh0- a8e6 Dec 31 07:02 7800basic-0.19/samples/samplegfx/ascii-alt02.png
[generic]                  540     540 100.0% -lh0- 358d Dec 31 07:02 7800basic-0.19/samples/samplegfx/ascii_4_wide_2color.png
[generic]                 1248    1248 100.0% -lh0- b4c5 Dec 31 07:02 7800basic-0.19/samples/samplegfx/atascii-full-character-set.png
[generic]                  381     381 100.0% -lh0- 3e5b Dec 31 07:02 7800basic-0.19/samples/samplegfx/hiscorefont-alt01.png
[generic]                  393     393 100.0% -lh0- f2bc Dec 31 07:02 7800basic-0.19/samples/samplegfx/hiscorefont-alt02.png
[generic]                  421     421 100.0% -lh0- 7f60 Dec 31 07:02 7800basic-0.19/samples/samplegfx/hiscorefont-alt03.png
[generic]                  360     360 100.0% -lh0- 72a3 Dec 31 07:02 7800basic-0.19/samples/samplegfx/hiscorefont.png
[generic]                  906     906 100.0% -lh0- e88c Dec 31 07:02 7800basic-0.19/samples/samplegfx/pdascii.png
[generic]                  228     228 100.0% -lh0- 099a Dec 31 07:02 7800basic-0.19/samples/samplegfx/scoredigits_4_wide.png
[generic]                  271     271 100.0% -lh0- 6410 Dec 31 07:02 7800basic-0.19/samples/samplegfx/scoredigits_8_wide.png
[generic]                 1117    1117 100.0% -lh0- 97b5 Dec 31 07:02 7800basic-0.19/samples/screensafe/gfx/ascii_full2.png
[generic]                  204     408  50.0% -lh5- dbaf Dec 31 07:02 7800basic-0.19/samples/screensafe/Makefile
[generic]                  896    3498  25.6% -lh5- 26ac Dec 31 07:02 7800basic-0.19/samples/screensafe/screensafe.bas
[generic]                  181     181 100.0% -lh0- a4ed Dec 31 07:02 7800basic-0.19/samples/simple/face1.png
[generic]                  210     427  49.2% -lh5- f2e4 Dec 31 07:02 7800basic-0.19/samples/simple/Makefile
[generic]                  263     507  51.9% -lh5- 2f53 Dec 31 07:02 7800basic-0.19/samples/simple/simple.bas
[generic]                   86     119  72.3% -lh5- 42a0 Dec 31 07:02 7800basic-0.19/samples/sizes.ref
[generic]                  295     295 100.0% -lh0- 9f2c Dec 31 07:02 7800basic-0.19/samples/smasteroids/gfx/alphabet_8_wide.png
[generic]                  476    5356   8.9% -lh5- 8190 Dec 31 07:02 7800basic-0.19/samples/smasteroids/gfx/astromap.tmx
[generic]                  238     238 100.0% -lh0- e2e1 Dec 31 07:02 7800basic-0.19/samples/smasteroids/gfx/scoredigits_8_wide.png
[generic]                  194     194 100.0% -lh0- 6310 Dec 31 07:02 7800basic-0.19/samples/smasteroids/gfx/sprite_asteroid1_large.png
[generic]                  150     150 100.0% -lh0- 9e93 Dec 31 07:02 7800basic-0.19/samples/smasteroids/gfx/sprite_asteroid1_med.png
[generic]                  190     190 100.0% -lh0- f427 Dec 31 07:02 7800basic-0.19/samples/smasteroids/gfx/sprite_asteroid2_large.png
[generic]                  152     152 100.0% -lh0- 9952 Dec 31 07:02 7800basic-0.19/samples/smasteroids/gfx/sprite_asteroid2_med.png
[generic]                  192     192 100.0% -lh0- 405d Dec 31 07:02 7800basic-0.19/samples/smasteroids/gfx/sprite_asteroid3_large.png
[generic]                  151     151 100.0% -lh0- d0d7 Dec 31 07:02 7800basic-0.19/samples/smasteroids/gfx/sprite_asteroid3_med.png
[generic]                  152     152 100.0% -lh0- fdbc Dec 31 07:02 7800basic-0.19/samples/smasteroids/gfx/sprite_fireball.png
[generic]                  167     167 100.0% -lh0- efc1 Dec 31 07:02 7800basic-0.19/samples/smasteroids/gfx/sprite_ship.png
[generic]                  208     208 100.0% -lh0- f227 Dec 31 07:02 7800basic-0.19/samples/smasteroids/gfx/sprite_ufo.png
[generic]                  296     296 100.0% -lh0- 93a4 Dec 31 07:02 7800basic-0.19/samples/smasteroids/gfx/tileset_stars.png
[generic]                  301     301 100.0% -lh0- 5b9e Dec 31 07:02 7800basic-0.19/samples/smasteroids/gfx/tileset_vector_b.png
[generic]                  214     432  49.5% -lh5- dc73 Dec 31 07:02 7800basic-0.19/samples/smasteroids/Makefile
[generic]                 1367    5435  25.2% -lh5- 5750 Dec 31 07:02 7800basic-0.19/samples/smasteroids/smasteroids.bas
[generic]                  532     532 100.0% -lh0- 46e6 Dec 31 07:02 7800basic-0.19/samples/soundtest/atascii.png
[generic]                  214     435  49.2% -lh5- 09b2 Dec 31 07:02 7800basic-0.19/samples/soundtest/Makefile
[generic]                10892   66387  16.4% -lh5- 9638 Dec 31 07:02 7800basic-0.19/samples/soundtest/soundtest.bas
[generic]                  159     159 100.0% -lh0- c90a Dec 31 07:02 7800basic-0.19/samples/spacephysics/gfx/bullet_8x8.png
[generic]                  330     330 100.0% -lh0- 4bd2 Dec 31 07:02 7800basic-0.19/samples/spacephysics/gfx/shipwedgeT_8x8.png
[generic]                  330     330 100.0% -lh0- 6558 Dec 31 07:02 7800basic-0.19/samples/spacephysics/gfx/shipwedgeT_sub_8x8.png
[generic]                  293     293 100.0% -lh0- 5908 Dec 31 07:02 7800basic-0.19/samples/spacephysics/gfx/shipwedge_8x8.png
[generic]                  294     294 100.0% -lh0- 10cf Dec 31 07:02 7800basic-0.19/samples/spacephysics/gfx/shipwedge_sub_8x8.png
[generic]                  215     433  49.7% -lh5- c5a0 Dec 31 07:02 7800basic-0.19/samples/spacephysics/Makefile
[generic]                 4620   15306  30.2% -lh5- ed9f Dec 31 07:02 7800basic-0.19/samples/spacephysics/spacephysics.bas
[generic]                  215     215 100.0% -lh0- acb9 Dec 31 07:02 7800basic-0.19/samples/splitmodedemobottom/gfx/herodown1.png
[generic]                  213     213 100.0% -lh0- 8d44 Dec 31 07:02 7800basic-0.19/samples/splitmodedemobottom/gfx/herodown2.png
[generic]                  231     231 100.0% -lh0- 334b Dec 31 07:02 7800basic-0.19/samples/splitmodedemobottom/gfx/heroleft1.png
[generic]                  227     227 100.0% -lh0- cb4f Dec 31 07:02 7800basic-0.19/samples/splitmodedemobottom/gfx/heroleft2.png
[generic]                  232     232 100.0% -lh0- a80b Dec 31 07:02 7800basic-0.19/samples/splitmodedemobottom/gfx/heroright1.png
[generic]                  225     225 100.0% -lh0- cadd Dec 31 07:02 7800basic-0.19/samples/splitmodedemobottom/gfx/heroright2.png
[generic]                  219     219 100.0% -lh0- 2e24 Dec 31 07:02 7800basic-0.19/samples/splitmodedemobottom/gfx/heroup1.png
[generic]                  218     218 100.0% -lh0- a338 Dec 31 07:02 7800basic-0.19/samples/splitmodedemobottom/gfx/heroup2.png
[generic]                  275     275 100.0% -lh0- df0f Dec 31 07:02 7800basic-0.19/samples/splitmodedemobottom/gfx/text320a.png
[generic]                  192     192 100.0% -lh0- dc5f Dec 31 07:02 7800basic-0.19/samples/splitmodedemobottom/gfx/tileset_blanks.png
[generic]                  372     372 100.0% -lh0- d731 Dec 31 07:02 7800basic-0.19/samples/splitmodedemobottom/gfx/tileset_rocks.png
[generic]                  208     413  50.4% -lh5- ca24 Dec 31 07:02 7800basic-0.19/samples/splitmodedemobottom/Makefile
[generic]                 1580    4621  34.2% -lh5- 5308 Dec 31 07:02 7800basic-0.19/samples/splitmodedemobottom/splitmodebottom.bas
[generic]                  215     215 100.0% -lh0- acb9 Dec 31 07:02 7800basic-0.19/samples/splitmodedemotop/gfx/herodown1.png
[generic]                  213     213 100.0% -lh0- 8d44 Dec 31 07:02 7800basic-0.19/samples/splitmodedemotop/gfx/herodown2.png
[generic]                  231     231 100.0% -lh0- 334b Dec 31 07:02 7800basic-0.19/samples/splitmodedemotop/gfx/heroleft1.png
[generic]                  227     227 100.0% -lh0- cb4f Dec 31 07:02 7800basic-0.19/samples/splitmodedemotop/gfx/heroleft2.png
[generic]                  232     232 100.0% -lh0- a80b Dec 31 07:02 7800basic-0.19/samples/splitmodedemotop/gfx/heroright1.png
[generic]                  225     225 100.0% -lh0- cadd Dec 31 07:02 7800basic-0.19/samples/splitmodedemotop/gfx/heroright2.png
[generic]                  219     219 100.0% -lh0- 2e24 Dec 31 07:02 7800basic-0.19/samples/splitmodedemotop/gfx/heroup1.png
[generic]                  218     218 100.0% -lh0- a338 Dec 31 07:02 7800basic-0.19/samples/splitmodedemotop/gfx/heroup2.png
[generic]                  275     275 100.0% -lh0- df0f Dec 31 07:02 7800basic-0.19/samples/splitmodedemotop/gfx/text320a.png
[generic]                  192     192 100.0% -lh0- dc5f Dec 31 07:02 7800basic-0.19/samples/splitmodedemotop/gfx/tileset_blanks.png
[generic]                  372     372 100.0% -lh0- d731 Dec 31 07:02 7800basic-0.19/samples/splitmodedemotop/gfx/tileset_rocks.png
[generic]                  206     410  50.2% -lh5- 8fc6 Dec 31 07:02 7800basic-0.19/samples/splitmodedemotop/Makefile
[generic]                 1579    4614  34.2% -lh5- 8911 Dec 31 07:02 7800basic-0.19/samples/splitmodedemotop/splitmodetop.bas
[generic]                  532     532 100.0% -lh0- 46e6 Dec 31 07:02 7800basic-0.19/samples/trackertest/atascii.png
[generic]                  215     434  49.5% -lh5- 32ae Dec 31 07:02 7800basic-0.19/samples/trackertest/Makefile
[generic]                 1885    7403  25.5% -lh5- 40ef Dec 31 07:02 7800basic-0.19/samples/trackertest/trackertest.bas
[generic]                  549     549 100.0% -lh0- 1d51 Dec 31 07:02 7800basic-0.19/samples/underthehood/gfx/ascii_4_wide_2color.png
[generic]                  173     173 100.0% -lh0- d1ed Dec 31 07:02 7800basic-0.19/samples/underthehood/gfx/ball.png
[generic]                  183     183 100.0% -lh0- af77 Dec 31 07:02 7800basic-0.19/samples/underthehood/gfx/smallball.png
[generic]                  206     411  50.1% -lh5- 5948 Dec 31 07:02 7800basic-0.19/samples/underthehood/Makefile
[generic]                 1671    5339  31.3% -lh5- 73a6 Dec 31 07:02 7800basic-0.19/samples/underthehood/underthehood.bas
[generic]                 1260    5501  22.9% -lh5- 75da Dec 31 07:02 7800basic-0.19/samples/underthehood/updateobjects.asm
[generic]                53971  268062  20.1% -lh5- 9af4 Dec 31 07:02 7800basic-0.19/statements.c
[generic]                 1104    3881  28.4% -lh5- 3687 Dec 31 07:02 7800basic-0.19/statements.h
[generic]               169530  444256  38.2% -lh5- fe02 May 22 02:22 7800basic-0.19/7800basic
[generic]                12527   35692  35.1% -lh5- 96d4 May 22 02:22 7800basic-0.19/7800preprocess
[generic]                 8323   20108  41.4% -lh5- 96a6 May 22 02:22 7800basic-0.19/7800postprocess
[generic]                 5956   14308  41.6% -lh5- 9852 May 22 02:22 7800basic-0.19/7800filter
[generic]                 8954   20848  42.9% -lh5- 901b May 22 02:22 7800basic-0.19/7800optimize
[generic]                15541   38228  40.7% -lh5- d6cb May 22 02:22 7800basic-0.19/7800header
[generic]                14376   32388  44.4% -lh5- 978f May 22 02:22 7800basic-0.19/7800sign
[generic]                 5437   12824  42.4% -lh5- 39d0 May 22 02:22 7800basic-0.19/7800makecc2
---------- ----------- ------- ------- ------ ---------- ------------ ----------
 Total       379 files 4229796 8914903  47.4%            May 22 02:51

Aminet © 1992-2023 Urban Müller and the Aminet team. Aminet contact address: <aminetaminet net>