~ubuntu-branches/ubuntu/dapper/fpc/dapper

« back to all changes in this revision

Viewing changes to compiler/powerpc/rappc.pas

  • Committer: Bazaar Package Importer
  • Author(s): Carlos Laviola
  • Date: 2004-08-12 16:29:37 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040812162937-moo8ulvysp1ln771
Tags: 1.9.4-5
fp-compiler: needs ld, adding dependency on binutils.  (Closes: #265265)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
    $Id: rappc.pas,v 1.3 2003/11/12 16:05:40 florian Exp $
 
3
    Copyright (c) 1998-2003 by Carl Eric Codere and Peter Vreman
 
4
 
 
5
    Handles the common ppc assembler reader routines
 
6
 
 
7
    This program is free software; you can redistribute it and/or modify
 
8
    it under the terms of the GNU General Public License as published by
 
9
    the Free Software Foundation; either version 2 of the License, or
 
10
    (at your option) any later version.
 
11
 
 
12
    This program is distributed in the hope that it will be useful,
 
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
    GNU General Public License for more details.
 
16
 
 
17
    You should have received a copy of the GNU General Public License
 
18
    along with this program; if not, write to the Free Software
 
19
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
20
 
 
21
 ****************************************************************************
 
22
}
 
23
unit rappc;
 
24
 
 
25
{$i fpcdefs.inc}
 
26
 
 
27
  interface
 
28
 
 
29
    uses
 
30
      aasmbase,aasmtai,aasmcpu,
 
31
      cpubase,rautils,cclasses;
 
32
 
 
33
    type
 
34
      TPPCOperand=class(TOperand)
 
35
      end;
 
36
 
 
37
      TPPCInstruction=class(TInstruction)
 
38
      end;
 
39
 
 
40
  implementation
 
41
 
 
42
end.
 
43
{
 
44
  $Log: rappc.pas,v $
 
45
  Revision 1.3  2003/11/12 16:05:40  florian
 
46
    * assembler readers OOPed
 
47
    + typed currency constants
 
48
    + typed 128 bit float constants if the CPU supports it
 
49
}