12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- {
- $Id$
- Copyright (c) 2000 by Florian Klaempfl
- Basic node handling
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- ****************************************************************************
- }
- unit node;
- {$i defines.inc}
- interface
- uses
- cobjects,
- globtype,
- cpubase,
- aasm,
- symtable;
- {$I nodeh.inc}
- implementation
- uses
- cutils,
- globals,
- symconst;
- {$I node.inc}
- end.
- {
- $Log$
- Revision 1.8 2000-10-01 19:48:24 peter
- * lot of compile updates for cg11
- Revision 1.7 2000/09/30 16:08:45 peter
- * more cg11 updates
- Revision 1.6 2000/09/28 19:49:52 florian
- *** empty log message ***
- Revision 1.5 2000/09/27 18:14:31 florian
- * fixed a lot of syntax errors in the n*.pas stuff
- Revision 1.4 2000/09/24 15:06:19 peter
- * use defines.inc
- Revision 1.3 2000/09/22 21:45:35 florian
- * some updates e.g. getcopy added
- Revision 1.2 2000/09/20 21:52:38 florian
- * removed a lot of errors
- Revision 1.1 2000/08/26 12:27:35 florian
- * initial release
- }
|