1171095Ssam/*  iwmmxt.h -- Intel(r) Wireless MMX(tm) technology co-processor interface.
2171095Ssam    Copyright (C) 2002-2020 Free Software Foundation, Inc.
3171095Ssam    Contributed by matthew green (mrg@redhat.com).
4171095Ssam
5171095Ssam    This program is free software; you can redistribute it and/or modify
6171095Ssam    it under the terms of the GNU General Public License as published by
7171095Ssam    the Free Software Foundation; either version 3 of the License, or
8171095Ssam    (at your option) any later version.
9171095Ssam
10171095Ssam    This program is distributed in the hope that it will be useful,
11171095Ssam    but WITHOUT ANY WARRANTY; without even the implied warranty of
12171095Ssam    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13171095Ssam    GNU General Public License for more details.
14171095Ssam
15171095Ssam    You should have received a copy of the GNU General Public License
16171095Ssam    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
17171095Ssam
18171095Ssamextern unsigned IwmmxtLDC (ARMul_State *, unsigned, ARMword, ARMword);
19171095Ssamextern unsigned IwmmxtSTC (ARMul_State *, unsigned, ARMword, ARMword *);
20171095Ssamextern unsigned IwmmxtMCR (ARMul_State *, unsigned, ARMword, ARMword);
21171095Ssamextern unsigned IwmmxtMRC (ARMul_State *, unsigned, ARMword, ARMword *);
22171095Ssamextern unsigned IwmmxtCDP (ARMul_State *, unsigned, ARMword);
23171095Ssam
24171095Ssamextern int ARMul_HandleIwmmxt (ARMul_State *, ARMword);
25171095Ssam
26171095Ssamextern int Fetch_Iwmmxt_Register (unsigned int, unsigned char *);
27171095Ssamextern int Store_Iwmmxt_Register (unsigned int, unsigned char *);
28171095Ssam