Ignore:
Timestamp:
01/25/09 17:20:17 (3 years ago)
Author:
debrouxl
Message:

Import GCC4TI Tools (formerly pctools of the TIGCC Tools Suite) with build scripts and preliminary Makefile (which always recompiles everything).
Remove the standalone ttpack + dependencies.

Location:
trunk/tigcc/tools
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/tigcc/tools/ttunpack.h

    • Property svn:executable deleted
    r1307 r1308  
    11/****************************************************************************** 
    22* 
    3 * project name:    TIGCC Tools Suite  
    4 * file name:       tt.h 
    5 * initial date:    13/08/2000 
    6 * author:          thomas.nussbaumer@gmx.net  
    7 * description:     generic definitions for TIGCC Tools Suite 
    8 * 
     3* project name:    GCC4TI Tools (formerly TIGCC Tools Suite) 
     4* file name:       ttunpack.h 
     5* initial date:    14/08/2000 
     6* author:          thomas.nussbaumer@gmx.net 
     7* description:     defines of errorcodes of decompression routine and its 
     8*                  declaration 
    99******************************************************************************/ 
    1010 
    1111/* 
    12   This file is part of the TIGCC Tools Suite. 
     12  This file is part of GCC4TI Tools and ExtGraph. 
    1313 
    1414  This file is free software; you can redistribute it and/or 
     
    1717  version 2.1 of the License, or (at your option) any later version. 
    1818 
    19   As a special exception, UNMODIFIED copies of some TIGCC Tools Suite utilities 
    20   may also be redistributed or sold without source code, for any purpose. (The 
    21   Lesser General Public License restrictions do apply in other respects; for 
    22   example, they cover modification of the program.) Please refer to the main 
    23   source file for the individual utility as to whether this is the case for a 
    24   particular tool. This exception notice must be removed on modified copies of 
    25   this file. 
     19  As a special exception, UNMODIFIED copies of ttunpack may also be 
     20  redistributed or sold without source code, for any purpose. (The Lesser 
     21  General Public License restrictions do apply in other respects; for example, 
     22  they cover modification of the program.) This exception notice must be 
     23  removed on modified copies of this file. 
    2624 
    2725  This program is distributed in the hope that it will be useful, 
     
    3533*/ 
    3634 
    37 #ifndef __TT_H__ 
    38 #define __TT_H__ 
     35#ifndef __TTUNPACK_H__ 
     36#define __TTUNPACK_H__ 
    3937 
    40 #define CALC_TI89    0 
    41 #define CALC_TI92P   1 
     38#define ERRPCK_OKAY             0 
     39#define ERRPCK_NOESCFOUND     248 
     40#define ERRPCK_ESCBITS        249 
     41#define ERRPCK_MAXGAMMA       250 
     42#define ERRPCK_EXTRALZP       251 
     43#define ERRPCK_NOMAGIC        252 
     44#define ERRPCK_OUTBUFOVERRUN  253 
     45#define ERRPCK_LZPOSUNDERRUN  254 
    4246 
    43 #define SIGNATURE_TI89   "**TI89**" 
    44 #define SIGNATURE_TI92P  "**TI92P*"  
    45  
    46 #define DEFAULT_FOLDER   "main" 
    47  
    48 #define DEFAULT_ITEMS_PER_LINE  10 
     47int _tt_Decompress(unsigned char *src, unsigned char *dest); 
     48#define UnPack _tt_Decompress 
    4949 
    5050#endif 
     51 
    5152 
    5253//############################################################################# 
     
    5859//============================================================================= 
    5960// 
    60 // Revision 1.3  2000/08/23 20:29:43  Thomas Nussbaumer 
    61 // added a 'P' to the TI92p definitions 
     61// Revision 1.2  2000/08/20 15:26:21  Thomas Nussbaumer 
     62// prefix of unpack routine (_tt_) corrected 
    6263// 
    63 // Revision 1.2  2000/08/23 01:04:41  Thomas Nussbaumer 
    64 // corrected signature of TI92p 
    65 // 
    66 // Revision 1.1  2000/08/13 20:24:16  Thomas Nussbaumer 
     64// Revision 1.1  2000/08/14 22:49:57  Thomas Nussbaumer 
    6765// initial version 
    6866// 
    6967// 
    70 // 
    71 // 
Note: See TracChangeset for help on using the changeset viewer.