/compiler/sparc/aoptcpud.pas
Pascal | 36 lines | 9 code | 6 blank | 21 comment | 0 complexity | a253eb2aca384d062d8d87fc9168d972 MD5 | raw file
Possible License(s): LGPL-2.0, LGPL-2.1, LGPL-3.0
1{ 2 Copyright (c) 1998-2004 by Jonas Maebe, member of the Free Pascal 3 Development Team 4 5 This program is free software; you can redistribute it and/or modify 6 it under the terms of the GNU General Public License as published by 7 the Free Software Foundation; either version 2 of the License, or 8 (at your option) any later version. 9 10 This program is distributed in the hope that it will be useful, 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 GNU General Public License for more details. 14 15 You should have received a copy of the GNU General Public License 16 along with this program; if not, write to the Free Software 17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 18 19 **************************************************************************** 20} 21Unit aoptcpud; 22 23{$i fpcdefs.inc} 24 25 interface 26 27 uses 28 aoptda; 29 30 type 31 TAOptDFACpu = class(TAOptDFA) 32 end; 33 34 implementation 35 36end.