1
0
mirror of https://github.com/fachat/xa65.git synced 2024-06-01 22:41:32 +00:00
xa65/xa
2018-09-21 14:25:00 +02:00
..
doc added stable version 2.3.5 2011-12-16 23:04:51 +01:00
examples added stable version 2.3.5 2011-12-16 23:04:51 +01:00
loader added stable version 2.3.5 2011-12-16 23:04:51 +01:00
man Merge branch 'master' into testsuite 2018-09-21 14:25:00 +02:00
misc Merge branch 'testsuite' into testmerge 2014-08-20 22:13:20 +02:00
src Merge branch 'master' into testsuite 2018-09-21 14:25:00 +02:00
tests Merge branch 'master' into testsuite 2018-09-21 14:25:00 +02:00
vstudio added stable version 2.3.5 2011-12-16 23:04:51 +01:00
ChangeLog Merge branch 'master' into testsuite 2018-09-21 14:25:00 +02:00
COPYING added stable version 2.3.5 2011-12-16 23:04:51 +01:00
Makefile Merge branch 'master' into testsuite 2018-09-21 14:25:00 +02:00
README.1st xa-2.3.8 2017-10-15 00:50:45 +02:00
TODO added TODO for listing quirks 2012-07-30 16:27:20 +02:00

This is the readme for xa, a cross-assembler for the 6502 and 65816 CPUs (and
derivatives). xa is a small, fast, portable two-pass assembler that compiles
under most ANSI C compilers. It is distributed under the GNU Public License
(see COPYING).

The current version is 2.3.8, a bug fix to the long-lived 2.3.0, itself with
compatibility improvements and new man-based documentation. It also completed
the merge of the 65816 and 6502/R65C02 versions and thus the current xa can
generate code for all targets now.

To install on a generic Unixy thing, you should be able to just type

	% make # to build the executable, and if it works ...
	% make test # if you have Perl, make and prerequisites, otherwise
	% make install # to install man pages and binaries into the system

This will create xa along with its various support utilities. Try assembling
the cpk depacker in examples/ as a test. xa also comes with uncpk (a program
for generating cpk archives) and printcbm (a program for listing Commodore
BASIC test) and file65, ldo65 and reloc65 for displaying, linking and
relocating o65 files in Andre's relocatable format (see doc/fileformats.txt).
The loader/ directory also has goodies for managing relocatable binaries.

Don't forget the man pages in man/. Install these into your MANPATH at your
leisure, or read them with nroff -man (and/or groff -man).

xa is no longer broadly supported outside of Unix due to my inability to test
it, but has nothing that should impair it from compiling elsewhere. To wit,
DOS compilation is still supported with the GO32 package. You should just be
able to type

	C:\> make dos

In addition, there are compatibility updates to allow it to compile under
Microsoft Visual Studio and mingw. It should compile under VS2005 as written;
look in the vstudio directory for solution and project files provided by
Fabian Nunez. For mingw, use

	make mingw

Similarly, Amiga and Atari ST compilation should still also function with
their particular compatible packages.

xa has a companion disassembler, the dxa package. dxa is not included in the
standard xa distribution, but can be downloaded from the xa home page at

	http://www.floodgap.com/retrotech/xa/

Please check by periodically for the latest version of both packages.

xa was originally written and maintained by Andre Fachat. The current version
is maintained by Cameron Kaiser.

Please send me your comments at ckaiser@floodgap.com -- Andre's original
readme follows and applies generally to the present version.

-------------------------------------------------------------------------------

XA is a 6502 cross compiler:

 - under GNU public license

 - can produce _relocatable_ binaries

 - The full fileformat description and 6502 file loader included.

 - also included relocation and info utilites, as well as linker

 - for any ANSI-C compliant computer (only utilities need 'stat' call 
   for file size). 

 - fast by hashtables

 - Rockwell CMOS opcodes

 - running under DOS and any ANSI C system (Unix, Amiga, Atari ST)

I developed this cross assembler for the 6502 CPU family quite some time
ago on my Atari ST. The assembler has successfully been ported to Amiga 
and Unix computer (ported? just compiled... :-) 
Lately I came across the problem to need relocatable 6502 binary files, so
I revised the assembler from version 2.0.7 to 2.1.0, adding a (admittedly
proprietary) 6502 relocatable binary format. But there are not many other
formats around and they didn't fit my needs. I have developed this format 
myself and it is under the GNU public license.
With version 2.1.1 the 'official' version of the fileformat is supported.

To compile it, just type "make" (if you have the GNU gcc. If not, edit the 
Makefile for the compiler options). This produces "xa", the cross assembler;
"uncpk", a small packing utility (where the C64 counterpart is in the
examples subdirectory), "printcbm", that lists C64 BASIC files and
'file65' that prints some information about o65 files.  The "loader" in
the loader subdirectory is a basic 6502 implementation of a relocating
binary loader.
"file65" prints file information on 'o65' relocatable files. "reloc65"
can relocate 'o65' files.

If you want to use it under DOS, you have to have the GO32 DOS crosscompiling
tools to compile. Then just type "make dos" and you'll end up with the
appropriate DOS binaries. This has been tested only under i386 Linux, however. 
Another archive with the DOS binaries included is provided.

One problem on the Atari was it's broken "malloc". Therefore I used to
alloc everything in one chunk and divide the memory by hand. So everything
was kind of statically allocated. This is almost gone now. Only the
temporary storage between pass1 and pass2 and the preprocessor are still
allocated in one chunk (size definitions in xah.h). The rest is allocated
as needed.

The docs are in the 'doc' subdir. There also is a description of the
6502 relocatable binary format. If you think some things could be 
expressed in a better way, feel free and mail me to improve my english ;-)
[ The documentation is now maintained in man(1) format in man/ . -- CK ]

Andre