home *** CD-ROM | disk | FTP | other *** search
- Notes on Recent Additions:
-
- CONVERSION TO MICROSOFT C 6.0 AND TURBO C++
-
- As of version 2.8.3 the TASM executable is built using TURBO C++.
- Makefiles for both TURBO C and Microsoft C are provided, however.
- Use:
-
- MAKEFILE.TC for TURBO C++
- MAKEFILE.MSC for Microsoft C 6.0
-
-
- ENHANCED 6800 FAMILY TABLE TO SUPPORT 68HC11
-
- Use the '-x7' (or just 'x') command line option to enable the 68HC11
- instructions. TASM deviates from standard Motorola syntax for the
- BSET, BRSET, BCLR, and BRCLR instructions. TASM requires commas
- separating all arguments. Motorola assemblers use white space to
- separate the last one or two arguments for these instructions. Here
- are examples of each applicable instruction:
-
- TASM MOTOROLA
- ---------------------- --------------------
- BCLR addr1,Y,bmsk BCLR addr1,Y bmsk
- BCLR addr1,X,bmsk BCLR addr1,X bmsk
- BCLR addr1 ,bmsk BCLR addr1 bmsk
- BSET addr1,Y,bmsk BSET addr1,Y bmsk
- BSET addr1,X,bmsk BSET addr1,X bmsk
- BSET addr1 ,bmsk BSET addr1 bmsk
-
- BRCLR addr1,Y,bmsk,lab1 BRCLR addr1,Y bmsk lab1
- BRCLR addr1,X,bmsk,lab1 BRCLR addr1,X bmsk lab1
- BRCLR addr1 ,bmsk,lab1 BRCLR addr1 bmsk lab1
- BRSET addr1,Y,bmsk,lab1 BRSET addr1,Y bmsk lab1
- BRSET addr1,X,bmsk,lab1 BRSET addr1,X bmsk lab1
- BRSET addr1 ,bmsk,lab1 BRSET addr1 bmsk lab1
-
-
- SAMPLE FILES FOR THE SMALL C COMPILER (68HC11)
-
- TASM can be used in conjunction with the public domain Small C
- Compiler by J. Hendrix (as published in Doctor Dobb's Journal).
- Unarchive the MISC.ZOO file to access the files of interest:
-
- booz misc.zoo
-
- Refer to the README.C11 file for an explanation of the files.
-
-
- TASM VERSION WITH INCREASED LABEL/MACRO MEMORY SPACE
-
- If you encounter error messages such as:
-
- unable to malloc for label storage
-
- try using TASMB.EXE which is in the MISC.ZOO archive. It is built
- with a different memory model that results in a larger memory heap
- from which label and macro storage is allocated. It is about 10%
- larger and runs about 10% slower than TASM.EXE.
-
-
-
-